import React from 'react'; import stl from './activeLabel.css'; const ActiveLabel = ({ item, onRemove }) => { return (
onRemove(item) }>{ item.text }
); }; export default ActiveLabel;