File cleanup and sourcing external fonts

This commit is contained in:
rektdeckard
2020-07-29 12:14:31 -04:00
parent 0ef8f87456
commit f3aa75a0c9
4 changed files with 20 additions and 346 deletions

View File

@@ -1,13 +1,6 @@
import { atom } from "recoil";
import { IconStyle } from "../lib";
/**
* ATOM
* An atom represents a piece of state. Atoms can be read from and written to from any component.
* Components that read the value of an atom are implicitly subscribed to that atom, so any atom
* updates will result in a re-render of all components subscribed to that atom:
*/
export const searchQueryAtom = atom<string>({
key: "searchQueryAtom",
default: "",