@ -0,0 +1,48 @@ |
|||||
|
import React, { Component } from 'react'; |
||||
|
|
||||
|
// import {card, tx} from '../../kit/lib'
|
||||
|
import { Card, Button, Timeline, Row, Col, List, Icon, |
||||
|
Form, Input, InputNumber, Checkbox } from 'antd'; |
||||
|
import 'antd/dist/antd.css'; |
||||
|
const FormItem = Form.Item; |
||||
|
|
||||
|
|
||||
|
|
||||
|
class newtx extends Component { |
||||
|
constructor(props) { |
||||
|
super(props); |
||||
|
this.state = { |
||||
|
receiver: '', |
||||
|
value: 0 |
||||
|
}; |
||||
|
|
||||
|
} |
||||
|
render() { |
||||
|
const { receiver, value } = this.state; |
||||
|
return ( |
||||
|
<div> |
||||
|
<Row gutter={16}> |
||||
|
<Col span={12}> |
||||
|
<Card title="New transaction"> |
||||
|
<Input |
||||
|
placeholder="address" |
||||
|
prefix={<Icon type="qrcode" style={{ color: 'rgba(0,0,0,.25)' }} />} |
||||
|
style={{ width: 200 }} |
||||
|
/> |
||||
|
<br/><br/> |
||||
|
<InputNumber |
||||
|
min={0} |
||||
|
defaultValue={0} |
||||
|
style={{marginRight: 10}} /> |
||||
|
|
||||
|
<Button type="primary" icon="check">Send</Button> |
||||
|
</Card> |
||||
|
</Col> |
||||
|
</Row> |
||||
|
|
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
export default newtx; |
@ -0,0 +1,44 @@ |
|||||
|
import React, { Component } from 'react'; |
||||
|
import ReactDOM from 'react-dom'; |
||||
|
import { BrowserRouter, Route, NavLink } from 'react-router-dom' |
||||
|
|
||||
|
import { Menu, Icon } from 'antd'; |
||||
|
|
||||
|
const SubMenu = Menu.SubMenu; |
||||
|
const MenuItemGroup = Menu.ItemGroup; |
||||
|
|
||||
|
|
||||
|
|
||||
|
class dashboard extends Component { |
||||
|
constructor(props) { |
||||
|
super(props); |
||||
|
this.state = { |
||||
|
}; |
||||
|
|
||||
|
} |
||||
|
render() { |
||||
|
return ( |
||||
|
<Menu |
||||
|
onClick={this.handleClick} |
||||
|
defaultSelectedKeys={['1']} |
||||
|
defaultOpenKeys={['sub1']} |
||||
|
mode="inline" |
||||
|
> |
||||
|
<Menu.Item key="1"> |
||||
|
<NavLink to="/"> |
||||
|
<Icon type="home" />Dashboard |
||||
|
</NavLink> |
||||
|
</Menu.Item> |
||||
|
<Menu.Item key="2"> |
||||
|
<NavLink to="/newtx"> |
||||
|
<Icon type="plus" />New transaction |
||||
|
</NavLink> |
||||
|
</Menu.Item> |
||||
|
<Menu.Item key="3"><Icon type="calendar" />History</Menu.Item> |
||||
|
<Menu.Item key="4"><Icon type="pie-chart" />Stats</Menu.Item> |
||||
|
</Menu> |
||||
|
); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
export default dashboard; |