mirror of
https://github.com/penxio/penx.git
synced 2026-01-14 07:57:56 -05:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
'use client'
|
|
|
|
import { atom, useAtom } from 'jotai'
|
|
|
|
export const postLoadingAtom = atom<boolean>(false)
|
|
|
|
export function usePostLoading() {
|
|
const [isPostLoading, setPostLoading] = useAtom(postLoadingAtom)
|
|
return { isPostLoading, setPostLoading }
|
|
}
|