import React from 'react'; import store from '~/store'; export default function NewChat() { const { newConversation } = store.useConversation(); const clickHandler = () => { // dispatch(setInputValue('')); // dispatch(setQuery('')); newConversation(); }; return ( New chat ); }