| 20 | SyntaxHighlighter.registerLanguage("python", py); |
| 21 | |
| 22 | interface ICodeExport { |
| 23 | globalStore: React.MutableRefObject<VizSpecStore | null>; |
| 24 | sourceCode: string; |
| 25 | open: boolean; |
| 26 | setOpen: (open: boolean) => void; |
| 27 | } |
| 28 | |
| 29 | const CodeExport: React.FC<ICodeExport> = observer((props) => { |
| 30 | const { globalStore, sourceCode, open, setOpen } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected