import { useCounterStore } from "./stores/counterStore"; function App() { const { count, incr } = useCounterStore(); return ( <>
Hello World!
Count: {count}