import React from 'react'; const Counter = ({ label, value, onDecrement, onIncrement, className }) => { return (
); }; export default Counter;