next.js/test/e2e/app-dir/chunk-loading/app/account/ClientShared.tsx
ClientShared.tsx13 lines270 B
'use client'

import { SuperShared } from '../../components/SuperShared'
import { LazyShared } from '../../components/LazyShared'

export function ClientShared() {
  return <SuperShared from="fizz" />
}

export function ClientDynamicShared() {
  return <LazyShared />
}
Quest for Codev2.0.0
/
SIGN IN