interface CodePreviewProps { data: unknown; } export function CodePreview({ data }: CodePreviewProps) { return (
{JSON.stringify(data, null, 2)}