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

15 lines
353 B
TypeScript
Raw Normal View History

2023-02-28 09:33:16 +00:00
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%">
2023-02-28 09:33:16 +00:00
{children}
</Box>
);