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

10 lines
199 B
TypeScript

'use client'
import dynamic from 'next/dynamic'
const Generator = dynamic(() => import('./AppleSecretGenerator'), { ssr: false })
export function AppleSecretGenerator() {
return <Generator />
}