index.tsx 274 B

12345678910111213
  1. import React from "react";
  2. import styles from "./index.module.scss";
  3. function A5show() {
  4. return (
  5. <div className={styles.A5show}>
  6. <div className="pageTitle">宁博展览</div>
  7. </div>
  8. );
  9. }
  10. const MemoA5show = React.memo(A5show);
  11. export default MemoA5show;