import React from "react"; import { storiesOf } from "@storybook/react"; import { withKnobs } from "@storybook/addon-knobs/react"; import withReadme from "storybook-readme/with-readme"; import Readme from "./README.md"; import HelpButton from "."; import Section from "../../../.storybook/decorators/section"; import { Text } from "../text"; import Link from "../link"; import styled from "styled-components"; const IconButtons = styled.div` margin-top: 150px; margin-left: 70px; display: flex; .icon-button { margin-left: 10px; } `; storiesOf("Components|Buttons", module) .addDecorator(withKnobs) .addDecorator(withReadme(Readme)) .add("help button", () => { return (
Paste you tooltip content here } /> You tooltip content with{" "} link } />

You can put every thing here

  • Word
  • Chart
  • Else
} />
); });