index.tsx 351 B

12345678910111213
  1. import React from "react";
  2. import styles from "./index.module.scss";
  3. function IsDev({ txt, isShow }: { txt: string, isShow: boolean }) {
  4. return (
  5. <div className={`${styles.isDev}`} style={{ top: isShow ? '20px' : '-50%' }}>
  6. <div className="txt">{txt}</div>
  7. </div>
  8. )
  9. }
  10. const MemoIsDev = React.memo(IsDev);
  11. export default MemoIsDev;