import { signOut, useSession } from "next-auth/react"; import React from "react"; type MiniProfileProps = {}; const MiniProfile: React.FC = () => { const { data: session } = useSession(); return (

{session?.user?.name}

Welcome to Instagram

); }; export default MiniProfile;