Skip to content

Commit

Permalink
doc: package name adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
ObservedObserver committed Sep 24, 2021
1 parent 259b9be commit 2f44a3b
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions packages/graphic-walker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,19 @@ Main features:
+ A Data Explainer which explain some why some patterns occur / what may cause them.

## Usage

### use as an embedding module
```bash
cd graphic-waler
yarn install
npm run build
yarn add @kanaries/graphic-walker

# or

npm i --save @kanaries/graphic-walker
```

In your app:
```typescript
import { GraphicWalker } from 'graphic-walker';
import { GraphicWalker } from '@kanaries/graphic-walker';
import 'graphic-walker/dist/style.css'

const YourEmbeddingTableauStyleApp: React.FC = props => {
Expand All @@ -30,4 +34,10 @@ const YourEmbeddingTableauStyleApp: React.FC = props => {
}

export default YourEmbeddingTableauStyleApp;
```
```

### try local
```bash
# packages/graphic-walker
npm run dev
```

0 comments on commit 2f44a3b

Please sign in to comment.