import { useState,memo } from 'react' interface props { count: number onClick: ()=> void } const helloWord = (props:props) =>{ console.log('helloWord') return (
HelloWord:{props.count}
) } export default memo(helloWord)