interface Props { content: string runtime: string } export default function ScriptViewer({ content, runtime }: Props) { return (
script.{runtime === 'node' ? 'js' : runtime === 'python3' ? 'py' : runtime}
        {content}
      
) }