page AsyncData { layout = "public" load server summary { return { message: "Rendered by the server loader" } } load client profile { return { name: "Ada", role: "Administrator" } } view {

Async data boundaries

Preparing the server summary…

{summary.message}

{error.message}

Loading the browser profile…

Welcome {profile.name} — {profile.role}

Profile failed: {error.message}

} }