This commit is contained in:
Andy Mikulski 2018-03-07 15:28:32 -07:00
Родитель 1a6f380372
Коммит 3f3a13430b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 66788E5FB2565F8B
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,7 @@
/* @flow */
import React, { Component } from 'react';
import { withRouter } from 'react-router-dom';
import type { RouterHistory, Location } from 'react-router-dom';
import { Button, Form, Input, Icon } from 'antd';
import 'console/login.less';
@ -9,8 +10,8 @@ const FormItem = Form.Item;
type Props = {
onAuth: Function,
history: any,
location: any,
history: RouterHistory,
location: Location,
};
type State = {};