Files
catalog/ts_web/views/eco-view-settings/eco-view-settings.demo.ts

19 lines
383 B
TypeScript
Raw Normal View History

2026-01-06 10:17:05 +00:00
import { html } from '@design.estate/dees-element';
export const demo = () => html`
<style>
.demo-container {
width: 100%;
2026-01-12 10:57:54 +00:00
height: 100%;
2026-01-06 10:17:05 +00:00
background: hsl(240 10% 4%);
border-radius: 12px;
overflow: hidden;
}
</style>
<div class="demo-container">
2026-01-12 10:57:54 +00:00
<eco-view-settings
2026-01-06 10:17:05 +00:00
.activePanel=${'general'}
2026-01-12 10:57:54 +00:00
></eco-view-settings>
2026-01-06 10:17:05 +00:00
</div>
`;