I want to load or define single component instead of
<script type="module" src="dist/ds-components/components.esm.js"></script>
with framewroks i could able to define individual compoennts like this
import { defineCustomElement as dsButton } from 'ds-components/dist/components/ds-button';
dsButton();
I want to do it same for html like
<script type="module">
import { defineCustomElement as dsButton } from 'ds-components/dist/components/ds-button.js';
dsButton();
</script>
somehow this is not working, does anyone using this with js project