const value = await Promise.resolve(42) export default function Index({ appValue }) { return (
{appValue}
{value}
) }