diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-12 03:47:59 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-12 03:47:59 +0300 |
commit | 106d489a53e9069a74ed6b90984c15cc48a8823f (patch) | |
tree | 73b3ad079d5902c988d80c7b050e44263928a3c5 /src/components/ContentSection | |
parent | a68198837b193369bfcc03f320c012d8568836d8 (diff) | |
download | chrono-cube-ui-106d489a53e9069a74ed6b90984c15cc48a8823f.tar.gz |
Perform cleanup, resolve warnings
Diffstat (limited to 'src/components/ContentSection')
-rw-r--r-- | src/components/ContentSection/ContentSection.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ContentSection/ContentSection.js b/src/components/ContentSection/ContentSection.js index 918c400..99e76aa 100644 --- a/src/components/ContentSection/ContentSection.js +++ b/src/components/ContentSection/ContentSection.js @@ -30,9 +30,9 @@ const ContentSection = ({ sectionName, children }) => { <> <Typography variant="h4">{sectionName}</Typography> <Divider variant="middle"/> - <div className={classes.content}> + <Typography component="div" className={classes.content}> {children} - </div> + </Typography> </> ); |