angular material react code example
Example 1: react js material ui
//install in the terminal
$ npm install @material-ui/core
// use the CDN
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
//on the component
import { Button } from '@material-ui/core';
function App() {
return <Button color="primary">Hello World</Button>;
}
Example 2: material ui
$ npm install @material-ui/core
Example 3: material ui
import TextField from '@material-ui/core/TextField'
<TextField
id="slots"
type="number"
min={1}
defaultValue="1"
className="TextField pa2"
onChange={handleChange}
label="number of slots"
InputProps={{
inputProps: { min: 1}
}}
InputLabelProps = {{
shrink:true,
}}/>