Files
catalog/ts_web/views/eco-view-system/eco-view-system.demo.ts
2026-01-12 10:57:54 +00:00

19 lines
380 B
TypeScript

import { html } from '@design.estate/dees-element';
export const demo = () => html`
<style>
.demo-container {
width: 100%;
height: 100%;
background: hsl(240 10% 4%);
border-radius: 12px;
overflow: hidden;
}
</style>
<div class="demo-container">
<eco-view-system
.activePanel=${'overview'}
></eco-view-system>
</div>
`;