mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
'use client'
|
|
|
|
import { foo } from 'foo-browser-import-binary'
|
|
|
|
export default function Page() {
|
|
return <p>{foo()}</p>
|
|
}
|