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

16 lines
500 B
JavaScript

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 = () => (
<Dropdown placeholder="Skills" fluid multiple selection options={options} />
);
export default DropdownSimulation;