preact-material-components
Version:
preact wrapper for "Material Components for the web"
19 lines (17 loc) • 511 B
Plain Text
import {h, Component} from 'preact';
import Radio from 'preact-material-components/Radio';
import FormField from 'preact-material-components/FormField';
import 'preact-material-components/Radio/style.css';
import 'preact-material-components/FormField/style.css';
export default class FormFieldPage extends Component {
render(){
return (
<div>
<FormField>
<Radio id="r1" name='opts'></Radio>
<label for="r1">Radio 1</label>
</FormField>
</div>
);
}
}