preact-material-components
Version:
preact wrapper for "Material Components for the web"
14 lines • 439 B
JavaScript
import { h } from 'preact';
import MaterialComponent from '../Base/MaterialComponent';
export class Formfield extends MaterialComponent {
constructor() {
super(...arguments);
this.componentName = 'form-field';
this.mdcProps = ['align-end'];
}
materialDom(props) {
return h("div", Object.assign({}, props), this.props.children);
}
}
export default Formfield;
//# sourceMappingURL=index.js.map