mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
short docs and add typscript definitions
This commit is contained in:
parent
6e161cb11a
commit
fbabdd9a30
@ -10,6 +10,37 @@ react-storybook-addon-backgrounds
|
||||
|
||||

|
||||
|
||||
### 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:
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user