|
|
@@ -1,6 +1,6 @@
|
|
|
import React, {Component} from 'react';
|
|
|
import {Switch, Input, Icon} from 'antd';
|
|
|
-
|
|
|
+import {FormattedMessage} from 'react-intl';
|
|
|
class AmazonResult extends Component {
|
|
|
constructor(props) {
|
|
|
super(props);
|
|
|
@@ -13,22 +13,7 @@ class AmazonResult extends Component {
|
|
|
render() {
|
|
|
return (
|
|
|
<div>
|
|
|
- <div style={{width: 300}}>
|
|
|
- <span>URL: </span>
|
|
|
- <Input
|
|
|
- placeholder="display your URL"
|
|
|
- prefix={<Icon type="copy"/>}
|
|
|
- value={this.state.url}
|
|
|
- onChange={() => {}}
|
|
|
- disabled={!this.state.checked}
|
|
|
- />
|
|
|
- </div>
|
|
|
- <div style={{marginTop: 30}}>
|
|
|
- <span>fc switch </span>
|
|
|
- <Switch defaultChecked onChange={(checked) => {
|
|
|
- this.setState({checked})
|
|
|
- }}/>
|
|
|
- </div>
|
|
|
+ <p><b><FormattedMessage id="It is under development, please look forward to it. Thank you for your attention"/></b></p>
|
|
|
</div>
|
|
|
)
|
|
|
}
|