summaryrefslogtreecommitdiffstats
path: root/packages/forms/src/error/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/forms/src/error/index.tsx')
-rw-r--r--packages/forms/src/error/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/forms/src/error/index.tsx b/packages/forms/src/error/index.tsx
index 3feaef7f6..9d26e086d 100644
--- a/packages/forms/src/error/index.tsx
+++ b/packages/forms/src/error/index.tsx
@@ -12,7 +12,7 @@ interface IProps {
12} 12}
13 13
14@observer 14@observer
15class Error extends Component<IProps> { 15class ErrorComponent extends Component<IProps> {
16 render() { 16 render() {
17 const { 17 const {
18 classes, 18 classes,
@@ -29,4 +29,4 @@ class Error extends Component<IProps> {
29 } 29 }
30} 30}
31 31
32export default injectSheet(styles)(Error); 32export const Error = injectSheet(styles)(ErrorComponent);