import React from "react"; import styles from "./index.module.scss"; function Smart() { return ( <div className={styles.Smart}> <h1>Smart</h1> </div> ) } const MemoSmart = React.memo(Smart); export default MemoSmart;