Finally gets the routing working in a somewhat reasonable way

This commit is contained in:
2025-07-21 13:34:06 -07:00
parent b30999e907
commit 3390ecfb95
9 changed files with 187 additions and 253 deletions

View File

@@ -0,0 +1,16 @@
export type Props = {
title: React.ReactNode;
navigation: React.ReactNode;
tabs: React.ReactNode[];
content: React.ReactNode;
};
export function TabbedLayout({ navigation, title, tabs, content }: Props) {
return (
<div>
<div>{navigation}</div>
<div>{title}</div>
<div>{tabs}</div>
<div>{content}</div>
</div>
);
}