Import the committed KnowledgeFS snapshot dc4072ee302317145612087ce7440851dc329fd0 under knowledge-fs/ without its Git history, local IDE settings, or build artifacts.
18 lines
399 B
TypeScript
18 lines
399 B
TypeScript
import type { Metadata } from "next";
|
|
import type { ReactNode } from "react";
|
|
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "KnowledgeFS Admin",
|
|
description: "Admin Console boundary for the Knowledge Platform",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|