This commit is contained in:
2026-01-12 10:57:46 +00:00
parent fafa98bc19
commit c55cd25a88
6 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { html } from '@design.estate/dees-element';
export const demo = () => html`
<style>
.demo-container {
width: 100%;
height: 600px;
background: hsl(240 10% 4%);
border-radius: 12px;
overflow: hidden;
}
</style>
<div class="demo-container">
<eco-peripherals
.activeCategory=${'all'}
@device-select=${(e: CustomEvent) => console.log('Device selected:', e.detail)}
@scan-start=${() => console.log('Scanning started')}
@scan-complete=${() => console.log('Scanning complete')}
></eco-peripherals>
</div>
`;