@arti-the-ai/arti-core
v0.0.53
Published
https://arti-the-ai.gitbook.io/arti-core-node-package/
Downloads
110
Readme
Follow the complete documentation:
https://arti-the-ai.gitbook.io/arti-core-node-package/
Quick Start
Install the library
Install via NPM
npm install --save @arti-the-ai/arti-core
Install via Yarn
yarn add @arti-the-ai/arti-core
Usage
You need to wrap "ArtiProvider" in your app index file
import React from 'react';
import { ArtiProvider } from '@arti-the-ai/arti-core'
return (
<AppProvider>
<ArtiProvider>
{children}
</ArtiProvider>
</AppProvider>
);