dify/web/app/components/full-screen-loading.tsx

10 lines
214 B
TypeScript

import Loading from './base/loading'
export function FullScreenLoading() {
return (
<div className="flex h-screen w-screen items-center justify-center bg-background-body">
<Loading />
</div>
)
}