Skip to content
Snippets Groups Projects
loading.tsx 188 B
// loading component, this renders when loading in /games happens
export default function Loading() {
    return (
        <div>
            <h1>Game Loading...</h1>
        </div>
    )
}