Skip to content

Instantly share code, notes, and snippets.

@techomoro
Created November 13, 2021 04:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techomoro/abd15d92c9eabff73cf8b295307a42ea to your computer and use it in GitHub Desktop.
Save techomoro/abd15d92c9eabff73cf8b295307a42ea to your computer and use it in GitHub Desktop.
import { atom } from "recoil";
export const nameState = atom({
key: "nameState", // unique ID (with respect to other atoms/selectors)
default: "", // default value (aka initial value)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment