diff --git a/src/features/shell/index.ts b/src/features/shell/index.tsx similarity index 100% rename from src/features/shell/index.ts rename to src/features/shell/index.tsx diff --git a/src/features/shell/shell.tsx b/src/features/shell/shell.tsx index ea2b48b..47984b0 100644 --- a/src/features/shell/shell.tsx +++ b/src/features/shell/shell.tsx @@ -2,11 +2,16 @@ import { ParentComponent } from "solid-js"; import { Top } from "./top"; import { Nav } from "./nav"; import css from "./shell.module.css"; +import { User } from "../user"; -export const Shell: ParentComponent = (props) => { +interface ShellProps { + user: User | undefined; +} + +export const Shell: ParentComponent = (props) => { return (
- +