mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
27 lines
549 B
TypeScript
27 lines
549 B
TypeScript
|
import React from "react";
|
||
|
import { Meta, Story } from "@storybook/react";
|
||
|
import { noop } from "lodash";
|
||
|
|
||
|
import Modal from ".";
|
||
|
import { IModalProps } from "./Modal";
|
||
|
|
||
|
import "../../index.scss";
|
||
|
|
||
|
export default {
|
||
|
component: Modal,
|
||
|
title: "Components/Modal",
|
||
|
args: {
|
||
|
title: "Test modal",
|
||
|
className: "",
|
||
|
onExit: noop,
|
||
|
},
|
||
|
} as Meta;
|
||
|
|
||
|
const Template: Story<IModalProps> = (props) => (
|
||
|
<Modal {...props}>
|
||
|
<div>This is a test description with lots of information.</div>
|
||
|
</Modal>
|
||
|
);
|
||
|
|
||
|
export const Default = Template.bind({});
|