mirror of
https://github.com/supabase/supabase.git
synced 2026-06-15 08:05:21 +08:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
'use client'
|
|
|
|
import dynamic from 'next/dynamic'
|
|
|
|
const Generator = dynamic(() => import('./AppleSecretGenerator'), { ssr: false })
|
|
|
|
export function AppleSecretGenerator() {
|
|
return <Generator />
|
|
}
|