6 lines
91 B
TypeScript
6 lines
91 B
TypeScript
import { atom } from "jotai"
|
|
|
|
const scopesAtom = atom<string[]>([])
|
|
|
|
export { scopesAtom }
|