/** @deprecated v0.6.10 — No surface imports SurfaceViewport. Layout root is in base.html. * * SurfaceViewport — container where the active surface renders * * Deliberately thin. Error boundaries and * surface transitions will be added in later versions. */ const { html } = window; export function SurfaceViewport({ surface = null, className = '' }) { return html`
${surface}
`; }