mirror of
https://github.com/penxio/penx.git
synced 2026-01-13 23:48:18 -05:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import { atom, useAtom } from 'jotai'
|
|
|
|
const noteAtom = atom<string>('')
|
|
|
|
export function useNote() {
|
|
const [note, setNote] = useAtom(noteAtom)
|
|
return { note, setNote }
|
|
}
|