UNPKG

@nadeshikon/plugin-nextjs

Version:
10 lines (7 loc) 231 B
'use client' import { useState } from 'react' export default function Client() { // To ensure that this component is rendered as a client component, we use a // state here. return useState('client_component')[0] }