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;
|
2024-02-05 12:11:05 +00:00
|
|
|
box-sizing: border-box;
|
2024-02-03 10:26:15 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="demoBox">
|
2024-02-03 13:42:20 +00:00
|
|
|
<dees-chart-area
|
2024-02-03 13:49:25 +00:00
|
|
|
.label=${'System Usage'}
|
2024-02-03 13:42:20 +00:00
|
|
|
></dees-chart-area>
|
2024-02-03 10:26:15 +00:00
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
};
|