short docs and add typscript definitions

This commit is contained in:
James Baxley 2016-08-31 22:45:33 -04:00 committed by Norbert de Langen
parent 6e161cb11a
commit fbabdd9a30
2 changed files with 32 additions and 0 deletions

View File

@ -10,6 +10,37 @@ react-storybook-addon-backgrounds
![React Storybook Screenshot](./.storybook/backgrounds.gif)
### Getting Started
```sh
npm i --save react-storybook-addon-backgrounds
```
Then create a file called `addons.js` in your storybook config.
Add following content to it:
```js
import '@kadira/storybook/addons';
import 'react-storybook-addon-backgrounds';
```
Then write your stories like this:
```js
import React from 'react';
import { storiesOf } from "@kadira/storybook";
import backgrounds from "react-storybook-addon-backgrounds";
storiesOf("Button", module)
.addDecorator(backgrounds([
{ name: "twitter", value: "#00aced" },
{ name: "facebook", value: "#3b5998" },
]))
.add("with text", () => <button>Click me</button>)
;
```
### Development
This project is built using typescript and is tested with jest. To get started, clone this repo and run the following command:

View File

@ -3,6 +3,7 @@
"version": "0.0.1",
"description": "A react storybook addon to show different backgrounds for your preview",
"main": "dist/index.js",
"typings": "dist/index.d.tx",
"scripts": {
"storybook": "start-storybook -p 3000",
"pretest": "npm run compile",