2
0
Files
bot/apps/builder/layouts/LoadingPage.tsx
Baptiste Arnaud 5e14a94dea Add authentication
2021-11-29 15:19:07 +01:00

12 lines
297 B
TypeScript

import { TypebotLogo } from 'assets/logos'
import { Spinner, VStack } from '@chakra-ui/react'
export const LoadingPage = () => (
<div className="flex h-screen items-center justify-center">
<VStack spacing={6}>
<TypebotLogo boxSize="80px" />
<Spinner />
</VStack>
</div>
)