Skip to content

Commit

Permalink
WIP try a root loading component for first time load
Browse files Browse the repository at this point in the history
  • Loading branch information
SSTPIERRE2 committed Mar 28, 2024
1 parent ef85dbe commit 1e0adc8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions packages/web/app/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
export default function Loading() {
return (
<div
style={{
paddingTop: '96px',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
gap: '1rem',
}}
>
<h2>Loading...</h2>
</div>
);
}

0 comments on commit 1e0adc8

Please sign in to comment.