// with npm npm install @material-ui/core >npm install typeface-roboto --save >npm install @material-ui/icons
import React from 'react'; import Button from '@material-ui/core/Button'; import { Table, Input } from '@material-ui/core'; function MyForm() { return ( <div> <Button variant="contained" color="primary" size="large"> Hello World </Button><br/> <Input type="tel" className="inpp"></Input> <Table style={{width:"100px"}}> <tr> <th className="col1">aa</th> <th >bb</th> </tr> <tr> <th>c</th> <th>d</th> </tr> </Table> </div> ); }