19 lines
360 B
TypeScript
19 lines
360 B
TypeScript
|
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>
|
||
|
`;
|
||
|
};
|