13 lines
216 B
TypeScript
13 lines
216 B
TypeScript
import React from 'react'
|
|
|
|
import Loading from '../components/Loading.tsx'
|
|
import Page from '../components/Page.tsx'
|
|
|
|
export default function LoadingPage() {
|
|
return (
|
|
<Page>
|
|
<Loading />
|
|
</Page>
|
|
)
|
|
}
|