aboutsummaryrefslogtreecommitdiff
path: root/src/lib
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
parent9fcfb5d784c38c1c3ddda33184b0d8f1be4db3e0 (diff)
downloadreact-benzin-c8d6281c29bbaca18cf86c63143c939d27357631.tar.gz
feat: migrate ContentSection to Typescript
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/ContentSection/ContentSection.tsx (renamed from src/lib/ContentSection/ContentSection.js)6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/ContentSection/ContentSection.js b/src/lib/ContentSection/ContentSection.tsx
index 461a9c2..7ff47f9 100644
--- a/src/lib/ContentSection/ContentSection.js
+++ b/src/lib/ContentSection/ContentSection.tsx
@@ -7,6 +7,10 @@ import {
} from '@material-ui/core';
+interface PropTypes {
+ sectionName: string;
+}
+
const useStyles = makeStyles(theme => ({
content: {
padding: theme.spacing(0, 2, 1, 2),
@@ -18,7 +22,7 @@ const useStyles = makeStyles(theme => ({
},
}));
-const ContentSection = ({ sectionName, children }) => {
+const ContentSection: React.FC<PropTypes> = ({ sectionName, children }) => {
const classes = useStyles();
return (