22 lines
317 B
TypeScript
22 lines
317 B
TypeScript
import { NotFound } from "Components/Result";
|
|
import Main from "Containers/Main";
|
|
|
|
const paths = [
|
|
{
|
|
id: "Main",
|
|
name: "Главная",
|
|
route: "/",
|
|
content: Main,
|
|
exact: true,
|
|
},
|
|
|
|
{
|
|
name: 404,
|
|
route: undefined,
|
|
content: NotFound,
|
|
exact: true,
|
|
},
|
|
];
|
|
|
|
export default paths;
|