@helpscout/artboard

A tool kit for React UI development and design

Usage no npm install needed!

<script type="module">
  import helpscoutArtboard from 'https://cdn.skypack.dev/@helpscout/artboard';
</script>

README

🖼 Artboard

Build Status npm version

A tool kit for React UI development and design

Artboard screenshot

Table of contents

Project is still under development!

Installation

npm install --save-dev @helpscout/artboard

Usage

Here's an example Storybook story with Artboard!

import React from 'react'
import Artboard from '@helpscout/artboard'
import MyComponent from './MyComponent'

const stories = storiesOf('MyComponent', module)

stories.add('Example', () => (
  <Artboard>
    <MyComponent />
  </Artboard>
))