aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/components/presentational/IconFromUserType.tsx
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-12-21 13:10:05 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-12-21 13:10:05 +0100
commit4ca30295d7d9f3dd7ba2e105952ff627f6b702a4 (patch)
tree48285ecb1957171ebb9b0106aaf2d1a184972d0e /src/client/react/components/presentational/IconFromUserType.tsx
parentf0c8cf0e79f003514fd65a70def5820205955a77 (diff)
Add strict typing
Except for functions because of https://github.com/reactjs/redux/issues/2709
Diffstat (limited to 'src/client/react/components/presentational/IconFromUserType.tsx')
-rw-r--r--src/client/react/components/presentational/IconFromUserType.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/react/components/presentational/IconFromUserType.tsx b/src/client/react/components/presentational/IconFromUserType.tsx
index d77ea1b..83af34c 100644
--- a/src/client/react/components/presentational/IconFromUserType.tsx
+++ b/src/client/react/components/presentational/IconFromUserType.tsx
@@ -9,7 +9,7 @@ import TeacherIcon = require('react-icons/lib/md/account-circle');
// defaultIcon?: JSX.Element,
// }
-const IconFromUserType: React.StatelessComponent<{ userType: string, defaultIcon?: JSX.Element }> = (props) => {
+const IconFromUserType: React.StatelessComponent<{ userType?: string, defaultIcon?: JSX.Element }> = (props) => {
switch (props.userType) {
case 'c':
return <ClassIcon />;