No Description

demo.jsx 306B

1234567891011121314
  1. import React from 'react';
  2. import CommentCombine from './index';
  3. import styles from './index.less';
  4. export class CommentDemo extends React.Component {
  5. render() {
  6. return (
  7. <div className={styles.playgroundWrapper}>
  8. <CommentCombine />
  9. </div>
  10. )
  11. }
  12. }
  13. export default CommentDemo;