No Description

comment.stories.jsx 213B

123456789101112131415
  1. import React from 'react';
  2. import CommentDemo from '@/components/comment/demo';
  3. export default {
  4. title: 'Comment',
  5. };
  6. export const comment = () => {
  7. return (
  8. <div>
  9. <CommentDemo />
  10. </div>
  11. )
  12. }