chore (@embark/embark-ui) clarify placeholders in ens utils

This commit is contained in:
Iuri Matias 2019-02-22 15:12:31 -05:00
parent a84dd01eba
commit 5bb0d7ceae
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ class EnsLookup extends Component {
</CardHeader>
<CardBody>
<FormGroup>
<Input placeholder="Enter an address" onChange={e => this.handleChange(e)}/>
<Input placeholder="Enter an address (0x...)" onChange={e => this.handleChange(e)}/>
</FormGroup>
<Button color="primary" onClick={() => this.handleLookup()}>Lookup</Button>
{this.state.showResult && this.showResult()}

View File

@ -46,7 +46,7 @@ class EnsResolve extends Component {
</CardHeader>
<CardBody>
<FormGroup>
<Input placeholder="Enter a name" onChange={e => this.handleChange(e)}/>
<Input placeholder="Enter a name (e.g embark.eth)" onChange={e => this.handleChange(e)}/>
</FormGroup>
<Button color="primary" onClick={() => this.handleResolve()}>Resolve</Button>
{this.state.showResult && this.showResult()}