123456789101112131415161718 |
- import React from "react";
- import CommentDemo from "@components/comment/demo.jsx";
- import "antd/dist/antd.less";
-
- export default {
- title: "Components/Comment",
- component: CommentDemo,
- };
-
- const Template = (args) => (
- <div>
- <CommentDemo {...args} />
- </div>
- );
-
- export const Primary = Template.bind({});
- Primary.args = {};
|