import * as React from "react";
import { storiesOf } from "@storybook/react";
import Story from "../../storybook-components/Story";
import { List } from "./List";
const stories = storiesOf("Components/Data/List", module);
stories.add("Unordered list", () => (
{[0, 1, 2, 3, 4].map((item) => (
This is the List component
))}
));
stories.add("Ordered list", () => (
{[0, 1, 2, 3, 4].map((item) => (
This is the List component
))}
));