dees-catalog/ts_web/elements/dees-chart-area.demo.ts

19 lines
360 B
TypeScript
Raw Normal View History

2024-02-03 10:26:15 +00:00
import { html } from '@design.estate/dees-element';
export const demoFunc = () => {
return html`
<style>
.demoBox {
position: relative;
background: #000000;
height: 100%;
width: 100%;
padding: 40px;
}
</style>
<div class="demoBox">
<dees-chart-area></dees-chart-area>
</div>
`;
};