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 | |
parent | 9fcfb5d784c38c1c3ddda33184b0d8f1be4db3e0 (diff) | |
download | react-benzin-c8d6281c29bbaca18cf86c63143c939d27357631.tar.gz |
feat: migrate ContentSection to Typescript
Diffstat (limited to 'src')
-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 ( |