import React from 'react'; import { Dropdown } from 'semantic-ui-react'; const options = [ { key: 'Living Room', text: 'Living Room', value: 'Living Room' }, { key: 'Kitchen', text: 'Kitchen', value: 'Kitchen' }, { key: 'Garden', text: 'Garden', value: 'Garden' }, { key: 'Bedroom 1', text: 'Bedroom 1', value: 'Bedroom 1' }, ]; const DropdownSimulation = () => ( ); export default DropdownSimulation;