Skip to content

Instantly share code, notes, and snippets.

@pavelvlasov
Created January 20, 2018 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavelvlasov/efcad89b6cda37a615260a1a7136de17 to your computer and use it in GitHub Desktop.
Save pavelvlasov/efcad89b6cda37a615260a1a7136de17 to your computer and use it in GitHub Desktop.
sample story
import { Bars } from "@/shared/api/chart/bar"
import { storiesOf } from "@storybook/react"
import * as React from "react"
import data from "./bars.data"
storiesOf("bars chart", module).add("default", () => {
return (
<Bars data={data} />
)
})
import "./bars.story"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment