No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

🏁 Getting Started

Installation

Install the package by running:

# If you use npm: npm install @shopify/polaris-viz --save # If you prefer Yarn, use the following command instead: yarn add @shopify/polaris-viz

Set up PolarisVizProvider

Wrap the top-level component of your app with the PolarisVizProvider.

import {PolarisVizProvider} from '@shopify/polaris-viz'; export const YourTopLevelComponent = () => { return ( <PolarisVizProvider> <App /> </PolarisVizProvider> ); };

CSS Styles

If your app is set up to consume esnext builds, import components where you want to use them and the styles will automatically be applied.

If your app is not set up for esnext, import the styles where you import components from the library:

import '@shopify/polaris-viz/build/esm/styles.css';

Peer dependencies

Polaris Viz has react@^16.8.6 as a peer dependency.

You are responsible for providing this package in your project. By requiring this package as peerDependencies we can be sure there won't be duplicate packages included due to version mismatches.