frontend/smart-hut/src/components/DropdownSimulation.js

16 lines
500 B
JavaScript
Raw Normal View History

2020-05-23 14:11:25 +00:00
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' },
2020-05-23 14:11:25 +00:00
];
const DropdownSimulation = () => (
2020-05-23 14:11:25 +00:00
<Dropdown placeholder="Skills" fluid multiple selection options={options} />
);
2020-05-23 14:11:25 +00:00
export default DropdownSimulation;