aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/ImportScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/auth/ImportScreen.tsx')
-rw-r--r--src/containers/auth/ImportScreen.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/containers/auth/ImportScreen.tsx b/src/containers/auth/ImportScreen.tsx
index 756a2e59c..8d318cb2d 100644
--- a/src/containers/auth/ImportScreen.tsx
+++ b/src/containers/auth/ImportScreen.tsx
@@ -1,17 +1,17 @@
1import { Component } from 'react'; 1import { Component } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { RouterStore } from 'mobx-react-router'; 3import { RouterStore } from 'mobx-react-router';
4import { UserStore } from 'src/stores.types';
4import Import from '../../components/auth/Import'; 5import Import from '../../components/auth/Import';
5import UserStore from '../../stores/UserStore';
6 6
7interface IProps { 7interface IProps {
8 actions: { 8 actions: {
9 user: UserStore, 9 user: UserStore;
10 }, 10 };
11 stores: { 11 stores: {
12 user: UserStore, 12 user: UserStore;
13 router: RouterStore, 13 router: RouterStore;
14 } 14 };
15} 15}
16 16
17class ImportScreen extends Component<IProps> { 17class ImportScreen extends Component<IProps> {