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

33 lines
1.1 KiB
TypeScript
Raw Normal View History

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