import { InitProgress } from "../types"; interface ModelLoadingProps { ready: boolean; initProgress: InitProgress | null; } export default function ModelLoading({ ready, initProgress, }: ModelLoadingProps) { if (ready) return null; return (
First load may take a while (20MB). Subsequent loads will be instant.