“Zustand Simple счетчик” Ответ

Zustand Simple счетчик

// store/store.js

import create from 'zustand'

export const useStore = create(set => ({
 count: 0,
 incrementCount: () => set(state => ({count: state.count + 1})),
 decrementCount: () => set(state => ({count: state.count - 1})) 
}))
Puzzled Puffin

Zustand Simple счетчик

// store/store.ts

import create from 'zustand'

interface Counter {
	count: number;
    incrementCount: () => void;
    decrementCount: () => void;
}

export const useStore = create<Counter>(set => ({
 count: 0,
 incrementCount: () => set(state => ({count: state.count + 1})),
 decrementCount: () => set(state => ({count: state.count - 1})) 
}))
Puzzled Puffin

Ответы похожие на “Zustand Simple счетчик”

Вопросы похожие на “Zustand Simple счетчик”

Смотреть популярные ответы по языку

Смотреть другие языки программирования