diff options
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 ( |