react-code-dataset
/
next.js
/test
/development
/acceptance-app
/fixtures
/component-stack
/app
/component.js
| 'use client' | |
| const isClient = typeof window !== 'undefined' | |
| export default function Component() { | |
| return ( | |
| <div> | |
| <p>{isClient ? 'client' : 'server'}</p> | |
| </div> | |
| ) | |
| } | |