mirror of
https://github.com/supabase/supabase.git
synced 2026-07-07 00:34:33 +08:00
12 lines
197 B
TypeScript
12 lines
197 B
TypeScript
import { lazy, Suspense } from 'react'
|
|
|
|
const Generator = lazy(() => import('./JwtGenerator'))
|
|
|
|
export function JwtGenerator() {
|
|
return (
|
|
<Suspense>
|
|
<Generator />
|
|
</Suspense>
|
|
)
|
|
}
|