Remaped imports to prepare for new content handling

This commit is contained in:
Kevin FEDYNA
2025-01-15 11:20:48 +01:00
parent 55cf175181
commit ed2997d51f
16 changed files with 74 additions and 17 deletions
+2
View File
@@ -1,6 +1,8 @@
export interface AppProperties {
name: string;
icon: string;
pages: Record<string, string>;
adminOnly: string[];
}
type AppNavigatorProps = {
+11
View File
@@ -0,0 +1,11 @@
type NavbarProps = {
pages: Record<string, string>;
};
export default function Navbar(props: NavbarProps) {
return (
<>
<p>{JSON.stringify(props.pages)}</p>
</>
);
}