Changeset 0.37.4 (#216)

Co-authored-by: gobha <jasafpro@gmail.com>
Co-committed-by: gobha <jasafpro@gmail.com>
This commit is contained in:
2026-03-21 01:15:09 +00:00
committed by xcaliber
parent fc43618501
commit 05b5affdac
7 changed files with 294 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
/**
* SurfaceViewport — container where the active surface renders
*
* Deliberately thin for v0.37.4. Error boundaries and
* surface transitions will be added in later versions.
*/
const { html } = window;
export function SurfaceViewport({ surface = null, className = '' }) {
return html`
<div class="sw-surface-viewport ${className}">
${surface}
</div>
`;
}