aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/input/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/input/index.tsx')
-rw-r--r--src/components/ui/input/index.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ui/input/index.tsx b/src/components/ui/input/index.tsx
index bfbee33b9..aa282cce0 100644
--- a/src/components/ui/input/index.tsx
+++ b/src/components/ui/input/index.tsx
@@ -6,9 +6,9 @@ import injectSheet, { WithStylesProps } from 'react-jss';
6 6
7import { IFormField } from '../typings/generic'; 7import { IFormField } from '../typings/generic';
8 8
9import { Error } from '../error'; 9import Error from '../error';
10import { Label } from '../label'; 10import Label from '../label';
11import { Wrapper } from '../wrapper'; 11import Wrapper from '../wrapper';
12import { scorePasswordFunc } from './scorePassword'; 12import { scorePasswordFunc } from './scorePassword';
13 13
14import styles from './styles'; 14import styles from './styles';
@@ -205,4 +205,4 @@ class InputComponent extends Component<IProps, IState> {
205 } 205 }
206} 206}
207 207
208export const Input = injectSheet(styles, { injectTheme: true })(InputComponent); 208export default injectSheet(styles, { injectTheme: true })(InputComponent);