import {PromogameGame} from "promogame-game-component"; export default function MainApp() { const Loading = ({ progress }: { progress: number }) => { return (
Loading {progress * 100}%
); }; return (
); }