File size: 235 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import { Box, Loader } from '@adminjs/design-system'
import React, { FC } from 'react'
export const AppLoader: FC = () => (
<Box width="100%" height="100%" flex alignItems="center" justifyContent="center">
<Loader />
</Box>
)
|