Compound Component Pattern
common pattern
app.js
import Counter from "./Counter";
import "./styles.css";
export default function App() {
return (
<div>
<h1>Compound Component Pattern</h1>
<Counter
iconIncrease="+"
iconDecrease="-"
lab...
archerzou.hashnode.dev2 min read