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 Table from "@material-ui/core/Table";
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";
import * as React from "react";
import EditableTableCell from "@saleor/components/EditableTableCell";
import CardDecorator from "../../CardDecorator";
import Decorator from "../../Decorator";
storiesOf("Generics / EditableTableCell", module)
.addDecorator(CardDecorator)
.addDecorator(Decorator)
.add("default", () => (
<Table>
<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>
</Table>
));