import { borderHeight, topBarHeight, } from "@dashboard/components/AppLayout/consts"; import { TopNav } from "@dashboard/components/AppLayout/TopNav"; import { Button } from "@dashboard/components/Button"; import { configurationMenuUrl } from "@dashboard/configuration"; import { MenuFragment } from "@dashboard/graphql"; import { sectionNames } from "@dashboard/intl"; import { menuListUrl, MenuListUrlSortField } from "@dashboard/navigation/urls"; import { ListActions, PageListProps, SortPage } from "@dashboard/types"; import { Box } from "@saleor/macaw-ui/next"; import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import MenuList from "../MenuList"; export interface MenuListPageProps extends PageListProps, ListActions, SortPage { menus: MenuFragment[]; onDelete: (id: string) => void; } const MenuListPage: React.FC = ({ ...listProps }) => { const intl = useIntl(); const addUrl = menuListUrl({ action: "add", }); return ( <> ); }; MenuListPage.displayName = "MenuListPage"; export default MenuListPage;