import React from 'react'; import PlusIcon from '@icon/PlusIcon'; import useAddChat from '@hooks/useAddChat'; const NewChat = () => { const addChat = useAddChat(); return ( {' '} New chat ); }; export default NewChat;