25 lines
714 B
TypeScript
25 lines
714 B
TypeScript
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 />);
|
|
}
|