import {h, Component} from 'preact'; import LayoutGrid from 'preact-material-components/LayoutGrid'; import 'preact-material-components/LayoutGrid/style.css'; export default class LayoutGridPage extends Component { render(){ return (
First cell Second cell Third cell
); } }