import SyntaxHighlighter from "react-syntax-highlighter"; import { atomOneDark } from "react-syntax-highlighter/dist/esm/styles/hljs"; interface JupytrerCellInputProps { code: string; } export function JupytrerCellInput({ code }: JupytrerCellInputProps) { return (
EXECUTE
        
          {code}
        
      
); }