Rename v1 to web-check-live
This commit is contained in:
24
src/web-check-live/App.tsx
Normal file
24
src/web-check-live/App.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import { Routes, Route, Outlet } from "react-router-dom";
|
||||
|
||||
import Home from 'web-check-live/views/Home.tsx';
|
||||
import Results from 'web-check-live/views/Results.tsx';
|
||||
import About from 'web-check-live/views/About.tsx';
|
||||
import NotFound from 'web-check-live/views/NotFound.tsx';
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<Routes>
|
||||
<Route path="/check" element={<Layout />}>
|
||||
<Route index element={<Home />} />
|
||||
<Route path="home" element={<Home />} />
|
||||
<Route path="about" element={<About />} />
|
||||
<Route path=":urlToScan" element={<Results />} />
|
||||
<Route path="*" element={<NotFound />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
);
|
||||
}
|
||||
|
||||
function Layout() {
|
||||
return (<Outlet />);
|
||||
}
|
||||
Reference in New Issue
Block a user