mirror of
https://github.com/supabase/supabase.git
synced 2026-06-22 02:02:51 +08:00
16 lines
398 B
TypeScript
16 lines
398 B
TypeScript
import React, { FC } from 'react'
|
|
import Lottie from 'lottie-react'
|
|
import loadingAnim from './Loading.anim.json'
|
|
|
|
interface Props {}
|
|
|
|
const Connecting: FC<Props> = () => (
|
|
<div className="w-full h-full flex flex-col items-center justify-center">
|
|
<div className="w-28">
|
|
<Lottie loop={true} autoplay={true} animationData={loadingAnim} />
|
|
</div>
|
|
</div>
|
|
)
|
|
|
|
export default Connecting
|