diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-07-12 14:55:19 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-07-12 16:23:37 +0900 |
| commit | 1c73c999ac78d2e6d3a8c68b4e17058046326f55 (patch) | |
| tree | 41a01cc3827098dfc8d108e5b9cfac1fd5e7fb7f /frontend/src/components/Layout.tsx | |
| parent | 9da56e3023af305ba7c5fd49caab60ac8bb57100 (diff) | |
| download | feedaka-1c73c999ac78d2e6d3a8c68b4e17058046326f55.tar.gz feedaka-1c73c999ac78d2e6d3a8c68b4e17058046326f55.tar.zst feedaka-1c73c999ac78d2e6d3a8c68b4e17058046326f55.zip | |
feat(frontend): create pages and components
Diffstat (limited to 'frontend/src/components/Layout.tsx')
| -rw-r--r-- | frontend/src/components/Layout.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
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 ( + <div className="min-h-screen bg-gray-50"> + <Navigation /> + <main className="container mx-auto px-4 py-8">{children}</main> + </div> + ); +} |
