AsaList
An array of verified Algorand ASA's and index numbers that can be imported like a component and used to populate dropdown menus.
Select a Verified ASA:
Select...
Usage Example
import {Select, AsaList,Text} from 'pipeline-ui'
<Text >Select a Verified ASA:</Text>
<Select
defaultValue={this.state.value}
onChange={this.asaNumbChangeHandler}
options={AsaList}
/>
In the above example, the OnChange event calls the function asaNumbChangeHandler, which can be seen below:
asaNumbChangeHandler = (event) => {
this.setState({ asaNumb: event.value });
}