### Examples **More examples** are available on NorthStar Storybook. ```jsx import Select from 'aws-northstar/components/Select'; import Container from 'aws-northstar/layouts/Container'; const options = [ { label: 'Option 1', value: '1' }, { label: 'Option 2', value: '2' }, { label: 'Option 3', value: '3' } ]; const [selectedOption, setSeletedOption] = React.useState(); const onChange = (event) => { setSeletedOption(options.find(o => o.value === event.target.value)); }; ``` ```jsx import Select from 'aws-northstar/components/Select'; import Container from 'aws-northstar/layouts/Container'; import Stack from 'aws-northstar/layouts/Stack'; const options = [ { label: 'Option 1', value: '1' }, { label: 'Option 2', value: '2' }, { label: 'Option 3', value: '3' } ]; console.log('Reload options')}/> ```