lion/packages/fieldset/docs/helpers/demo-fieldset-child.js
Thomas Allmer bcd074d1fb feat: use markdown javascript (mdjs) for documentation
Co-authored-by: CubLion <alex.ghiu@ing.com>
2020-05-29 17:01:15 +02:00

13 lines
252 B
JavaScript

import { LionField } from '@lion/field';
customElements.define(
'demo-fieldset-child',
class extends LionField {
get slots() {
return {
...super.slots,
input: () => document.createElement('input'),
};
}
},
);