Move LoginForm to the component dir.

master
Tom Hacohen 7 years ago
parent e710e89200
commit 441549f41d

@ -4,7 +4,7 @@ import { withRouter } from 'react-router';
import Container from './widgets/Container'; import Container from './widgets/Container';
import SyncGate from './SyncGate'; import SyncGate from './SyncGate';
import LoginForm from './LoginForm'; import LoginForm from './components/LoginForm';
import { store, StoreState, CredentialsType } from './store'; import { store, StoreState, CredentialsType } from './store';
import { fetchCredentials } from './store/actions'; import { fetchCredentials } from './store/actions';

@ -3,9 +3,9 @@ import RaisedButton from 'material-ui/RaisedButton';
import TextField from 'material-ui/TextField'; import TextField from 'material-ui/TextField';
import Toggle from 'material-ui/Toggle'; import Toggle from 'material-ui/Toggle';
import { getPalette } from './App'; import { getPalette } from '../App';
import * as C from './constants'; import * as C from '../constants';
interface FormErrors { interface FormErrors {
errorEmail?: string; errorEmail?: string;
Loading…
Cancel
Save