mirror of
https://github.com/harivansh-afk/Austens-Wedding-Guide.git
synced 2026-04-16 20:01:23 +00:00
Initial commits
This commit is contained in:
commit
a2f90d042a
85 changed files with 11700 additions and 0 deletions
20
src/App.tsx
Normal file
20
src/App.tsx
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import { BrowserRouter as Router } from 'react-router-dom';
|
||||
import { ThemeProvider } from '@/components/theme-provider';
|
||||
import { Toaster } from '@/components/ui/sonner';
|
||||
import Layout from '@/components/Layout';
|
||||
import Routes from '@/components/Routes';
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<ThemeProvider defaultTheme="light" storageKey="vite-ui-theme">
|
||||
<Router>
|
||||
<Layout>
|
||||
<Routes />
|
||||
</Layout>
|
||||
</Router>
|
||||
<Toaster />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
Loading…
Add table
Add a link
Reference in a new issue