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;