import React from 'react'; import { useRecoilValue } from 'recoil'; import store from '~/store'; export default function MobileNav({ setNavVisible }) { const conversation = useRecoilValue(store.conversation); const { newConversation } = store.useConversation(); const { title = 'New Chat' } = conversation || {}; return (

{title || 'New Chat'}

); }