interface PrettyJsonProps { data: unknown } function PrettyJson({ data }: PrettyJsonProps) { return (
{JSON.stringify(data, null, 2)}