Move client stuff into own folder
This commit is contained in:
parent
140578b7ab
commit
7878545ee7
|
|
@ -11,7 +11,7 @@ import SettingsDialog from './component/SettingsDialog';
|
|||
import SnackBarHandler from './snack/SnackBarHandler';
|
||||
import * as config from './config';
|
||||
import Applications from './application/Applications';
|
||||
import Clients from './pages/Clients';
|
||||
import Clients from './client/Clients';
|
||||
import Login from './pages/Login';
|
||||
import Messages from './pages/Messages';
|
||||
import Users from './pages/Users';
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import {BaseStore} from './BaseStore';
|
||||
import {BaseStore} from '../stores/BaseStore';
|
||||
import axios from 'axios';
|
||||
import * as config from '../config';
|
||||
import {action} from 'mobx';
|
||||
|
|
@ -11,7 +11,7 @@ import React, {Component, SFC} from 'react';
|
|||
import ConfirmDialog from '../component/ConfirmDialog';
|
||||
import DefaultPage from '../component/DefaultPage';
|
||||
import ToggleVisibility from '../component/ToggleVisibility';
|
||||
import AddClientDialog from './dialog/AddClientDialog';
|
||||
import AddClientDialog from './AddClientDialog';
|
||||
import {observer} from 'mobx-react';
|
||||
import {observable} from 'mobx';
|
||||
import {inject, Stores} from '../inject';
|
||||
|
|
@ -15,7 +15,7 @@ import {SnackManager} from './snack/SnackManager';
|
|||
import {InjectProvider, StoreMapping} from './inject';
|
||||
import {UserStore} from './stores/UserStore';
|
||||
import {MessagesStore} from './stores/MessagesStore';
|
||||
import {ClientStore} from './stores/ClientStore';
|
||||
import {ClientStore} from './client/ClientStore';
|
||||
|
||||
const defaultDevConfig = {
|
||||
url: 'http://localhost:80/',
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import {UserStore} from './stores/UserStore';
|
|||
import {SnackManager} from './snack/SnackManager';
|
||||
import {MessagesStore} from './stores/MessagesStore';
|
||||
import {CurrentUser} from './stores/CurrentUser';
|
||||
import {ClientStore} from './stores/ClientStore';
|
||||
import {ClientStore} from './client/ClientStore';
|
||||
import {AppStore} from './application/AppStore';
|
||||
import {inject as mobxInject, Provider} from 'mobx-react';
|
||||
import {WebSocketStore} from './stores/WebSocketStore';
|
||||
|
|
|
|||
Loading…
Reference in New Issue