import { Form } from './form' import { getSentinelValue } from '../getSentinelValue' export default function Page() { const simpleValue = 'result' // JSX has debug info, which affects the serialized result const jsxValue = and more // Async components emit timing chunks const timedValue = return ( <>
{ 'use server' return ( <> {simpleValue} {jsxValue} {timedValue} ) }} />
{getSentinelValue()}
) } async function HasTimingInfo() { await Promise.resolve() return 'and even more' }