mirror of
https://github.com/Myzel394/kleckrelay-website.git
synced 2025-06-20 00:05:26 +02:00
12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import React, {ReactElement} from "react"
|
|
|
|
import {Typography} from "@mui/material"
|
|
|
|
export default function LoadingScreen(): ReactElement {
|
|
return (
|
|
<Typography variant="caption" component="p">
|
|
Loading...
|
|
</Typography>
|
|
)
|
|
}
|