import { Box, Text } from "@saleor/macaw-ui/next"; interface SectionWithDescriptionProps { title: string; description?: React.ReactNode; children?: React.ReactNode; } export const SectionWithDescription = (props: SectionWithDescriptionProps) => { return ( {props.title} {props.description} {!!props.children && ( {props.children} )} ); };