preact-material-components
Version:
preact wrapper for "Material Components for the web"
14 lines (12 loc) • 317 B
Plain Text
import {h, Component} from 'preact';
import TextField from 'preact-material-components/TextField';
import 'preact-material-components/TextField/style.css';
export default class TextFieldPage extends Component {
render(){
return (
<div>
<TextField label="Textarea tag"/>
</div>
);
}
}