| 5 | import { LoadManifestModal } from "./LoadManifestModal"; |
| 6 | |
| 7 | interface Props { |
| 8 | loaded: boolean, |
| 9 | onChangeManifestUrl: (url: string) => void |
| 10 | } |
| 11 | |
| 12 | export const GraphBrowserLoader = ({ loaded, onChangeManifestUrl }: Props) => { |
| 13 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected