fix(core): update

This commit is contained in:
2024-02-05 10:07:49 +01:00
parent 55bac1bf7b
commit d0789ab279
4 changed files with 112 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
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-log
.label=${'Event Log'}
></dees-chart-log>
</div>
`;
};