Skip to main content

Usage

Description​

The cervello function allows you to create a new store in an easy way. Just set the initial value (the type will be inferred based on this value) and you have it

Example​

// store-example.ts

import { cervello } from '@cervello/react'

type Store = { count: number }

export const {
store, // object with reactive changes
useStore, // Hook to be used in the components
reset, // Function to reset the store
} = cervello<Store>({ count: 0 })

Options (optional)​

NameTypeDescription
afterChange(storeChange) => voidFor side side-effects. Execute a function after a change in the store. It receives the storeChange object with the information about the change.

Example with options​

// store-example.ts

import { cervello } from '@cervello/react'
import type { CervelloOptions } from '@cervello/react'


export const {
store,
useStore
} = cervello(
{ fullName: '', email: '' },

{
// Execute a function after a change in the store (side-effects)
afterChange: (storeChange) => {
onSubmit: async (data) => { console.log('[SUBMIT] > data ', { data }) },
}
} satisfies CervelloOptions<Store>,
)