diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-02-03 17:53:42 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-02-03 17:53:42 +0300 |
commit | c8d6281c29bbaca18cf86c63143c939d27357631 (patch) | |
tree | 4da2136718d0416a6e48e2d94c27dfd6259db9a2 /src/lib/ContentSection/ContentSection.tsx | |
parent | 9fcfb5d784c38c1c3ddda33184b0d8f1be4db3e0 (diff) | |
download | react-benzin-c8d6281c29bbaca18cf86c63143c939d27357631.tar.gz |
feat: migrate ContentSection to Typescript
Diffstat (limited to 'src/lib/ContentSection/ContentSection.tsx')
-rw-r--r-- | src/lib/ContentSection/ContentSection.tsx | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/lib/ContentSection/ContentSection.tsx b/src/lib/ContentSection/ContentSection.tsx new file mode 100644 index 0000000..7ff47f9 --- /dev/null +++ b/src/lib/ContentSection/ContentSection.tsx @@ -0,0 +1,41 @@ +import React from 'react'; + +import { + Typography, + Divider, + makeStyles +} from '@material-ui/core'; + + +interface PropTypes { + sectionName: string; +} + +const useStyles = makeStyles(theme => ({ + content: { + padding: theme.spacing(0, 2, 1, 2), + marginBottom: theme.spacing(1), + + '& .MuiButton-root': { + margin: theme.spacing(1, 2, 2, 0), + }, + }, +})); + +const ContentSection: React.FC<PropTypes> = ({ sectionName, children }) => { + const classes = useStyles(); + + return ( + <> + <Typography variant="h4">{sectionName}</Typography> + <Divider variant="middle"/> + <Typography component="div" className={classes.content}> + {children} + </Typography> + </> + ); + +}; + + +export default ContentSection; |