17 lines
426 B
TypeScript
17 lines
426 B
TypeScript
import React from "react";
|
|
import {Route, Routes} from "react-router-dom";
|
|
import Layout from "./components/layout";
|
|
import AppRoutes from "./AppRoutes";
|
|
import "./index.css";
|
|
|
|
export const App: Component = () => (
|
|
<Layout>
|
|
<Routes>
|
|
{AppRoutes.map((route, index) => {
|
|
const {element, ...rest} = route;
|
|
return <Route key={index} {...rest} element={element}/>;
|
|
})}
|
|
</Routes>
|
|
</Layout>
|
|
);
|