saleor-dashboard/src/storybook/CardDecorator.tsx

17 lines
331 B
TypeScript
Raw Normal View History

import { Card, CardContent } from "@material-ui/core";
2019-08-09 10:26:22 +00:00
import React from "react";
2019-06-19 14:40:52 +00:00
const CardDecorator = storyFn => (
<Card
style={{
margin: "auto",
overflow: "visible",
2019-10-14 14:17:03 +00:00
position: "relative",
width: 400,
2019-06-19 14:40:52 +00:00
}}
>
<CardContent>{storyFn()}</CardContent>
</Card>
);
export default CardDecorator;