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 }) => (
|
2023-07-28 07:32:43 +00:00
|
|
|
<Box display="grid" gridTemplateColumns={1} height="100%">
|
2023-02-28 09:33:16 +00:00
|
|
|
{children}
|
|
|
|
</Box>
|
|
|
|
);
|