mirror of
https://github.com/supabase/supabase.git
synced 2026-09-08 19:08:44 +08:00
## Problem We now export components under a subpath in ui-patterns to avoid barrel files as they slow down every tools (from IDE to linters, etc.) and may also affect bundles our users have to download. ## Solution - Remove the UI patterns index file - Fix invalid impors
13 lines
449 B
TypeScript
13 lines
449 B
TypeScript
import { ShimmeringLoader } from 'ui-patterns/ShimmeringLoader'
|
|
|
|
export const DocViewLoading = () => {
|
|
return (
|
|
<div className="w-full h-full overflow-y-auto flex flex-col py-10 space-y-2">
|
|
<ShimmeringLoader className="h-2 w-24 max-w-full" />
|
|
<ShimmeringLoader className="h-2 w-96 max-w-full" />
|
|
<ShimmeringLoader className="h-2 w-96 max-w-full" />
|
|
<ShimmeringLoader className="h-2 w-96 max-w-full" />
|
|
</div>
|
|
)
|
|
}
|