import { Form } from './form' import defaultAction1, { foo, bar, baz, qux } from './actions1' import defaultAction2 from './actions2' import defaultAction3 from './actions3' import Link from 'next/link' import { ServerComponent } from './server-component' export default function Page() { const action1 = async () => { 'use server' return 'declarator arrow function expression' } async function action2() { 'use server' return 'function declaration' } return (
{ 'use server' return 'arrow function expression' }} /> client component page
) }