import { h, Fragment } from 'preact'; import './Counter.css'; export default function Counter({ children, count }) { const add = () => count.value++; const subtract = () => count.value--; return ( <>
{count}