index.tsx 171 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import React, { memo } from 'react'; const About: React.FC<AboutProps> = (props) => { return <div>About</div>; }; interface AboutProps {} export default memo(About);