react-code-dataset / next.js /test /e2e /app-dir /app-external /app /react-server /optout /client.js
| 'use client' | |
| import v from 'conditional-exports-optout' | |
| import v1 from 'conditional-exports-optout/subpath' | |
| export default function Client() { | |
| return ( | |
| <> | |
| {`Client: ${v}`} | |
| <br /> | |
| {`Client subpath: ${v1}`} | |
| <br /> | |
| </> | |
| ) | |
| } | |