import { openDialog } from "@/store/settings.ts"; import { version } from "@/conf.ts"; import { useDispatch } from "react-redux"; function ChatFooter() { const dispatch = useDispatch(); return (
{ // triggerInstallApp(); dispatch(openDialog()); }} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" strokeWidth="2" stroke="currentColor" fill="none" strokeLinecap="round" strokeLinejoin="round" > chatnio v{version}
); } export default ChatFooter;