mirror of
https://github.com/shoelace-style/shoelace.git
synced 2026-01-12 02:59:13 +00:00
* fix react imports in examples * move types to definition files * update changelog * update changelog
13 lines
317 B
Handlebars
13 lines
317 B
Handlebars
import {{ properCase tag }} from './{{ tagWithoutPrefix tag }}.component.js';
|
|
|
|
export * from './{{ tagWithoutPrefix tag }}.component.js';
|
|
export default {{ properCase tag }};
|
|
|
|
{{ properCase tag }}.define('{{ tag }}');
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'{{ tag }}': {{ properCase tag }};
|
|
}
|
|
}
|