import { useState } from 'react'; export default function({ initialCount }) { const [count, setCount] = useState(initialCount || 0); return (