import { Box, PropsWithBox, Text } from "@saleor/macaw-ui/next";
import React from "react";
const MAX_WIDTH = "480px";
const Header = ({ children, ...props }: PropsWithBox<{ children: React.ReactNode }>) => {
return (
{children}
);
};
const Description = ({
title,
description,
...props
}: PropsWithBox<{
title: React.ReactNode;
description: React.ReactNode;
}>) => {
return (
{title}
{description}
);
};
export const Section = {
Header,
Description,
};