next.js/test/e2e/app-dir/actions/app/shared/page.js
page.js14 lines200 B
import { Server } from './server'
import { Client } from './client'

export default async function Page() {
  return (
    <>
      <hr />
      <Server />
      <hr />
      <Client />
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN