19 lines
374 B
TypeScript
19 lines
374 B
TypeScript
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-settings
|
|
.activePanel=${'general'}
|
|
></eco-settings>
|
|
</div>
|
|
`;
|