1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-20 09:38:07 +00:00
thatmattlove-hyperglass/hyperglass/ui/components/useConfig.js
2020-02-24 09:06:07 -07:00

6 lines
169 B
JavaScript

import { useMemo } from "react";
import config from "~/frontend.json";
export default () => useMemo(() => config);
export const useConfig = cfg => useMemo(() => cfg);