next.js/test/e2e/app-dir/taint/app/component.tsx
component.tsx10 lines151 B
'use client'

export default function ClientComponent({
  config,
}: {
  config: { [key: string]: string }
}) {
  return <h1>{config.something}</h1>
}
Quest for Codev2.0.0
/
SIGN IN