mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-17 14:04:21 +01:00
initial
This commit is contained in:
16
src/App.tsx
Normal file
16
src/App.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import { Routes, Route } from '@solidjs/router';
|
||||
|
||||
import Home from '@/pages/Home';
|
||||
import NotFound from '@/pages/NotFound';
|
||||
import AccountRecovery from '@/pages/AccountRecovery';
|
||||
|
||||
const App: Component = () => (
|
||||
<Routes>
|
||||
<Route path="/" element={<Home />} />
|
||||
<Route path="/recovery" element={<AccountRecovery />} />
|
||||
<Route path="/*" element={<NotFound />} />
|
||||
</Routes>
|
||||
);
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user