UNPKG

cra-template-ichsnn-counter-app

Version:
10 lines (8 loc) 216 B
import React from 'react' import CounterBtn from './CounterBtn' const IncreaseBtn = () => { return ( <CounterBtn label="+" handle={() => {console.log("Increase")}} /> ) } export default IncreaseBtn