import { listActionsProps, pageListProps, sortPageProps, } from "@dashboard/fixtures"; import { menuList } from "@dashboard/navigation/fixtures"; import { MenuListUrlSortField } from "@dashboard/navigation/urls"; import React from "react"; import { PaginatorContextDecorator } from "../../../../.storybook/decorators"; import MenuListPage, { MenuListPageProps } from "./MenuListPage"; const props: MenuListPageProps = { ...pageListProps.default, ...listActionsProps, ...sortPageProps, menus: menuList, onDelete: () => undefined, sort: { ...sortPageProps.sort, sort: MenuListUrlSortField.name, }, }; export default { title: "Navigation / Menu list", decorators: [PaginatorContextDecorator], }; export const Default = () => ; export const Loading = () => ( ); export const NoData = () => ;