| 14 | import { Checkbox } from "@/components/ui/checkbox"; |
| 15 | |
| 16 | interface IUploadChartModal { |
| 17 | gwRef: React.MutableRefObject<IGWHandler | null>; |
| 18 | storeRef: React.MutableRefObject<VizSpecStore | null>; |
| 19 | dark: string; |
| 20 | } |
| 21 | |
| 22 | const UploadChartModal: React.FC<IUploadChartModal> = observer((props) => { |
| 23 | const [uploading, setUploading] = useState(false); |
nothing calls this directly
no outgoing calls
no test coverage detected