UNPKG

@twotwoba/vv-cli

Version:

Easily create Vite + React/Vue3 project with TailwindCSS and other useful libraries. Also support Chrome extension.

19 lines (14 loc) 278 B
/* demo: import { create } from 'zustand' type state = { count: number } type action = { increment: () => void } export const useCountStore = create<state & action>((set) => ({ count: 0, increment: () => set((state) => ({ count: state.count + 1 })) })) */