mirror of
https://github.com/supabase/supabase.git
synced 2026-05-22 17:00:43 +08:00
Sorted all imports in all packages, `cms`, `design-system` and `ui-library` apps by running `pnpm format` on them. All changes in this PR are done by the script.
9 lines
493 B
TypeScript
9 lines
493 B
TypeScript
import type { RegistryItem } from 'shadcn/schema'
|
|
|
|
import nextjs from './default/clients/nextjs/registry-item.json' with { type: 'json' }
|
|
import reactRouter from './default/clients/react-router/registry-item.json' with { type: 'json' }
|
|
import react from './default/clients/react/registry-item.json' with { type: 'json' }
|
|
import tanstack from './default/clients/tanstack/registry-item.json' with { type: 'json' }
|
|
|
|
export const clients = [nextjs, react, reactRouter, tanstack] as RegistryItem[]
|