saleor-dashboard/src/components/Layouts/List/Root.tsx

14 lines
353 B
TypeScript

import { Box } from "@saleor/macaw-ui/next";
import React from "react";
interface ListPageLayoutProps {
children: React.ReactNode;
hasSaveBar?: boolean;
hasTopNav?: boolean;
}
export const ListPageLayout: React.FC<ListPageLayoutProps> = ({ children }) => (
<Box display="grid" gridTemplateColumns={1} height="100%">
{children}
</Box>
);