📁바탕화면에 zustand-app 폴더 생성하기
📥리액트 설치하기 : npx create-react-app ./
📥Zustand 설치하기 : npm install zustand
src 안에 components 폴더 만들고 Counter.js 파일 만들어주기
rafce 해주고 함수형 컴포넌트 자동 생성하기
App.js 안에서 Counter 컴포넌트 넣어주기

useCounterStore 다른 곳에서 사용할거니까 export로 내보내기🥏
useCounterStore를 호출하면 count랑 inc가 다 호출되는 것📢
