--- order: 2 title: zh-CN: 嵌套评论 en-US: Nested comments --- ## zh-CN 评论可以嵌套。 ## en-US Comments can be nested. ```tsx import { Avatar, Comment } from 'antd'; import React from 'react'; const ExampleComment: React.FC<{ children?: React.ReactNode }> = ({ children }) => ( Reply to]} author={Han Solo} avatar={} content={ We supply a series of design principles, practical patterns and high quality design resources (Sketch and Axure). } > {children} ); const App: React.FC = () => ( ); export default App; ```
We supply a series of design principles, practical patterns and high quality design resources (Sketch and Axure).