2
0

CourseIntro.tsx 481 B

1234567891011121314151617181920212223
  1. //课程详情简介
  2. import { Col, Row, Typography } from "antd";
  3. import Marked from "../general/Marked";
  4. const { Paragraph } = Typography;
  5. interface IWidget {
  6. intro?: string;
  7. }
  8. const CourseIntroWidget = ({ intro }: IWidget) => {
  9. return (
  10. <Row>
  11. <Col flex="auto"></Col>
  12. <Col flex="960px">
  13. <Paragraph>
  14. <Marked text={intro} />
  15. </Paragraph>
  16. </Col>
  17. <Col flex="auto"></Col>
  18. </Row>
  19. );
  20. };
  21. export default CourseIntroWidget;