import { Box, PropsWithBox, Text } from "@saleor/macaw-ui/next"; import { ReactNode } from "react"; // todo move to shared export const AppSection = ({ heading, sideContent, mainContent, includePadding = false, ...props }: PropsWithBox<{ heading: string; sideContent?: ReactNode; mainContent: ReactNode; includePadding?: boolean; }>) => { return ( {heading} {sideContent} {mainContent} ); };