mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
perf: rewrite plebchan completely
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
import { Route, Routes } from 'react-router-dom';
|
||||
import Home from './views/home';
|
||||
import styles from './app.module.css';
|
||||
|
||||
const App = () => {
|
||||
return (
|
||||
<div className={styles.app}>
|
||||
<Routes>
|
||||
<Route path='/' element={<Home />} />
|
||||
</Routes>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user