Files
bookMgr-client/src/components/layout/AppLayout.tsx
T
msksbr 60e83d49dd feat: initialize app with routing, query management, and UI framework
- Replace Vite boilerplate with React Router for page navigation
- Add React Query for server state and cache management
- Integrate shadcn/ui component library with Tailwind CSS v4
- Configure @/ path alias for clean module imports
- Set up Vite dev proxy to API backend
- Remove default App.css, App.tsx, and react.svg assets
2026-05-24 19:19:08 +08:00

10 lines
161 B
TypeScript

import { Outlet } from "react-router-dom"
export default function AppLayout() {
return (
<div className="min-h-screen">
<Outlet />
</div>
)
}