No Description

Comment.stories.js 333B

123456789101112131415161718
  1. import React from "react";
  2. import CommentDemo from "@components/comment/demo.jsx";
  3. import "antd/dist/antd.less";
  4. export default {
  5. title: "Components/Comment",
  6. component: CommentDemo,
  7. };
  8. const Template = (args) => (
  9. <div>
  10. <CommentDemo {...args} />
  11. </div>
  12. );
  13. export const Primary = Template.bind({});
  14. Primary.args = {};