建立專案
建立專案。
1 | npx create-next-app@latest |
安裝依賴套件。
1 | npm install zustand |
新增 hooks/useCount.js
檔。
1 | import { create } from 'zustand'; |
修改 app/page.js
檔。
1 | 'use client'; |
啟動網頁。
1 | npm run dev |
前往 http://localhost:3000 瀏覽。
建立專案。
1 | npx create-next-app@latest |
安裝依賴套件。
1 | npm install zustand |
新增 hooks/useCount.js
檔。
1 | import { create } from 'zustand'; |
修改 app/page.js
檔。
1 | 'use client'; |
啟動網頁。
1 | npm run dev |
前往 http://localhost:3000 瀏覽。