import React from "react"; import { FaCheck } from "react-icons/fa"; import { useRecoilValue } from "recoil"; import { doneConvosSelector } from "../../recoil/main"; import ConversationFullRow from "../Conversations/ConversationFullRow"; export default function Done() { const doneConvos = useRecoilValue(doneConvosSelector); return ( <> {doneConvos?.length > 0 ? ( {doneConvos.map((tRoom) => ( ))} ) : (
Add things to done to

clear your mind.
)} ); }