import { Box, Spacer, Text } from '@/design-system'
export const HelperSection = ({
header = '',
children,
}: {
header: string
children: React.ReactNode
}) => {
return (
{header}
{children}
)
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const HelperRenderJson = ({ children }: { children: any }) => {
if (typeof children === 'undefined') {
return null
}
return (
{JSON.stringify(children, null, 4)}
)
}