2019-06-19 14:40:52 +00:00
|
|
|
import { storiesOf } from "@storybook/react";
|
2019-08-09 10:26:22 +00:00
|
|
|
import React from "react";
|
2019-06-19 14:40:52 +00:00
|
|
|
|
|
|
|
import { DateTime } from "@saleor/components/Date";
|
|
|
|
import CardDecorator from "../../CardDecorator";
|
|
|
|
import Decorator from "../../Decorator";
|
|
|
|
|
|
|
|
storiesOf("Generics / DateTime", module)
|
|
|
|
.addDecorator(CardDecorator)
|
|
|
|
.addDecorator(Decorator)
|
|
|
|
.add("default", () => <DateTime date="2018-04-07T10:44:44+00:00" />)
|
|
|
|
.add("plain", () => (
|
|
|
|
<DateTime date="2018-04-07T10:44:44+00:00" plain={true} />
|
|
|
|
));
|