next.js/test/e2e/app-dir/with-babel/app/page.js
page.js9 lines146 B
'use client'

import { useState } from 'react'

export default function Page() {
  const state = useState('hello')[0]
  return <h1>{state}</h1>
}
Quest for Codev2.0.0
/
SIGN IN