mirror of
https://mirror.skon.top/github.com/langgenius/dify.git
synced 2026-04-20 23:40:16 +08:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import Loading from '@/app/components/base/loading'
|
|
|
|
export default function RootLoading() {
|
|
return (
|
|
<div className="flex h-screen w-screen items-center justify-center bg-background-body">
|
|
<Loading />
|
|
</div>
|
|
)
|
|
}
|