UNPKG

backsplash-app

Version:
12 lines (9 loc) 272 B
import { useRecoilState } from "recoil"; import { lastWallpaperState } from "@/recoil/atoms"; export function useLastWallpaper() { const [lastWallpaper, setLastWallpaper] = useRecoilState(lastWallpaperState); return { lastWallpaper, setLastWallpaper, }; }