type ContentBoxProps = { children: React.ReactNode className?: string showBackground?: boolean hideBorder?: boolean hidePadding?: boolean } const ContentBox = ({ children, className = '', showBackground = false, hideBorder = false, hidePadding = false, }: ContentBoxProps) => { return (
{children}
) } export default ContentBox