Files
supabase/apps/docs/components/JwtGenerator/index.tsx
Charis f4779d4844 refactor: migrate guides to app router (#23101)
Migrate guides to App Router.
2024-07-03 10:25:06 -04:00

17 lines
333 B
TypeScript

'use client'
import dynamic from 'next/dynamic'
import { Suspense } from 'react'
const DynamicJwtGenerator = dynamic(() => import('./JwtGenerator'), { ssr: false })
const JwtGenerator = () => {
return (
<Suspense fallback={<div>Loading...</div>}>
<DynamicJwtGenerator />
</Suspense>
)
}
export { JwtGenerator }