Last active
January 7, 2021 09:14
-
-
Save rrmdn/e08544d382fa284b1dd24f70ff1fe8f0 to your computer and use it in GitHub Desktop.
qoreContext.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { QoreClient } from "@feedloop/qore-client"; | |
| import createQoreContext from "@feedloop/qore-react"; | |
| import config from "./qore.config.json"; | |
| import schema from "./qore.schema.json"; | |
| const client = new QoreClient(config); | |
| client.init(schema); | |
| const qoreContext = createQoreContext(client); | |
| export default qoreContext; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment