No Description

comment.stories.jsx 297B

12345678910111213141516171819
  1. import React from 'react';
  2. import { withInfo } from "@storybook/addon-info";
  3. import CommentDemo from '@/components/comment/demo';
  4. export default {
  5. title: 'Comment',
  6. decorators: [
  7. withInfo,
  8. ]
  9. };
  10. export const comment = () => {
  11. return (
  12. <div>
  13. <CommentDemo />
  14. </div>
  15. )
  16. }