From 1c73c999ac78d2e6d3a8c68b4e17058046326f55 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 12 Jul 2025 14:55:19 +0900 Subject: feat(frontend): create pages and components --- frontend/src/components/Layout.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 frontend/src/components/Layout.tsx (limited to 'frontend/src/components/Layout.tsx') diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx new file mode 100644 index 0000000..09a0eb4 --- /dev/null +++ b/frontend/src/components/Layout.tsx @@ -0,0 +1,15 @@ +import type { ReactNode } from "react"; +import { Navigation } from "./Navigation"; + +interface Props { + children: ReactNode; +} + +export function Layout({ children }: Props) { + return ( +
+ +
{children}
+
+ ); +} -- cgit v1.2.3-70-g09d2