UNPKG

preact-material-components

Version:
14 lines (12 loc) 288 B
import {h, Component} from 'preact'; import Icon from 'preact-material-components/Icon'; export default class ListPage extends Component { render(){ return ( <div> <div><Icon>menu</Icon></div> <div><Icon>favorite_border</Icon></div> </div> ); } }