This commit is contained in:
Shusui MOYATANI
2023-02-17 17:15:13 +09:00
commit 2aa85b3ed9
42 changed files with 16424 additions and 0 deletions

16
src/App.tsx Normal file
View 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;