b91e262
1
2
3
4
5
6
'use client' export default function Page() { return <p>{typeof window === 'undefined' ? 'server' : 'client'}</p> }