import React, { useEffect } from 'react'; function FriendStatus(props) { useEffect(() => { // do someting when mount component return function cleanup() { // do something when unmount component }; }); }