This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
Владислав Чикалкин b8bbdf3799 configure backend
2020-08-21 10:14:34 +03:00

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;