9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
|
|
import '@smarthome.exchange/catalog';
|
||
|
|
import { html, render } from '@design.estate/dees-element';
|
||
|
|
|
||
|
|
const run = async () => {
|
||
|
|
render(html`<shx-console-shell></shx-console-shell>`, document.body);
|
||
|
|
};
|
||
|
|
|
||
|
|
run();
|