Skip to content

Commit

Permalink
Fix some jsx comments
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Jun 16, 2020
1 parent f565f11 commit 8bfa773
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions docs/src/pages/styles/advanced/advanced.md
Expand Up @@ -108,11 +108,9 @@ function Nested(props) {
const classes = useStyles();
return (
<button className={classes.root}>
{' '}
// 'jss1'
{/* 'jss1' */}
<span className={classes.label}>
{' '}
// 'jss2' nested
{/* 'jss2' nested */}
</span>
</button>
);
Expand All @@ -137,8 +135,7 @@ const Nested = withStyles({
})(({ classes }) => (
<button className={classes.root}>
<span className={classes.label}>
{' '}
// 'jss2 my-label' Nested
{/* 'jss2 my-label' Nested*/}
</span>
</button>
));
Expand All @@ -163,8 +160,7 @@ function Nested(props) {
return (
<button className={classes.root}>
<span className={classes.label}>
{' '}
// 'jss2 my-label' nested
{/* 'jss2 my-label' nested */}
</span>
</button>
);
Expand Down

0 comments on commit 8bfa773

Please sign in to comment.