aboutsummaryrefslogtreecommitdiff
path: root/src/lib/ContentSection/ContentSection.js
diff options
context:
space:
mode:
authorEug-VS <eug-vs@keemail.me>2020-02-03 17:53:42 +0300
committerEug-VS <eug-vs@keemail.me>2020-02-03 17:53:42 +0300
commitc8d6281c29bbaca18cf86c63143c939d27357631 (patch)
tree4da2136718d0416a6e48e2d94c27dfd6259db9a2 /src/lib/ContentSection/ContentSection.js
parent9fcfb5d784c38c1c3ddda33184b0d8f1be4db3e0 (diff)
downloadreact-benzin-c8d6281c29bbaca18cf86c63143c939d27357631.tar.gz
feat: migrate ContentSection to Typescript
Diffstat (limited to 'src/lib/ContentSection/ContentSection.js')
-rw-r--r--src/lib/ContentSection/ContentSection.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/lib/ContentSection/ContentSection.js b/src/lib/ContentSection/ContentSection.js
deleted file mode 100644
index 461a9c2..0000000
--- a/src/lib/ContentSection/ContentSection.js
+++ /dev/null
@@ -1,37 +0,0 @@
-import React from 'react';
-
-import {
- Typography,
- Divider,
- makeStyles
-} from '@material-ui/core';
-
-
-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 = ({ 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;