dees-catalog/ts_web/elements/dees-input-typelist.demo.ts

15 lines
315 B
TypeScript
Raw Normal View History

2024-01-09 12:57:53 +00:00
import { html } from '@design.estate/dees-element';
export const demoFunc = () => html`
2024-01-15 11:57:49 +00:00
<style>
.demoContainer {
max-width: 600px;
margin: auto;
padding: 40px;
background: #000;
}
</style>
<div class="demoContainer">
<dees-input-typelist></dees-input-typelist>
</div>
2024-01-09 12:57:53 +00:00
`;