20 lines
349 B
TypeScript
20 lines
349 B
TypeScript
'use client'
|
|
|
|
import { Grid } from 'react-loader-spinner'
|
|
|
|
export function Loading () {
|
|
return (
|
|
<h1>
|
|
<Grid
|
|
visible={true}
|
|
height="666"
|
|
width="666"
|
|
color="#4fa94d"
|
|
ariaLabel="grid-loading"
|
|
radius="12.5"
|
|
wrapperStyle={{}}
|
|
wrapperClass="grid-wrapper"
|
|
/>
|
|
</h1>
|
|
)
|
|
} |