saleor-dashboard/src/storybook/stories/components/EditableTableCell.tsx

35 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import TableBody from "@material-ui/core/TableBody";
import TableCell from "@material-ui/core/TableCell";
import TableHead from "@material-ui/core/TableHead";
import TableRow from "@material-ui/core/TableRow";
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 EditableTableCell from "@saleor/components/EditableTableCell";
2019-11-04 14:25:23 +00:00
import ResponsiveTable from "@saleor/components/ResponsiveTable";
2019-06-19 14:40:52 +00:00
import CardDecorator from "../../CardDecorator";
import Decorator from "../../Decorator";
storiesOf("Generics / EditableTableCell", module)
.addDecorator(CardDecorator)
.addDecorator(Decorator)
.add("default", () => (
2019-11-04 14:25:23 +00:00
<ResponsiveTable>
2019-06-19 14:40:52 +00:00
<TableHead>
<TableCell>Some header</TableCell>
<TableCell>Some header</TableCell>
<TableCell>Some header</TableCell>
</TableHead>
<TableBody>
<TableRow>
<TableCell>Some value</TableCell>
<EditableTableCell
value={"Some editable text"}
onConfirm={() => undefined}
/>
<TableCell>Some value</TableCell>
</TableRow>
</TableBody>
2019-11-04 14:25:23 +00:00
</ResponsiveTable>
2019-06-19 14:40:52 +00:00
));