import { useState } from "react"; import "./App.css"; import { Button } from "./lib"; function App() { const [count, setCount] = useState(0); const onCount = (e: any) => { setCount(count + 1); }; return (

Count: {count}

); } export default App;