Answers for "react style components"

4

styled componets npm

npm i styled-components
Posted by: Guest on August-14-2020
0

use styles in react

const useStyles = makeStyles(theme => ({
  textField: {
    marginLeft: theme.spacing(1),
    marginRight: theme.spacing(1),
    border: '1px solid red',
  },
}));
function App() {
  const classes = useStyles();
return (
    <TextField
      id="outlined-name"
      label="Name"
      className={classes.textField}
      margin="normal"
      variant="outlined"
    />
  );
}
Posted by: Guest on December-16-2020

Browse Popular Code Answers by Language