import React from "react";
import { storiesOf } from "@storybook/react";
import { checkA11y } from "storybook-addon-a11y";

import Suggestions from "./index";

storiesOf("Suggestions")
  .addDecorator(checkA11y)
  .add("should render the suggestions box", () => (
    <div style={{ width: "933px" }}>
      <Suggestions>This is a demo suggestion</Suggestions>
    </div>
  ));
