import legalTechFlip from "../Assets/Images/legalTechFlip.jpg"; const MobileContent = ({ isDashboard }) => { const copy = isDashboard ? "hello dash" : "Novodraft is a desktop application. Please login on your desktop device to use this feature"; return ( <>
{!isDashboard ? ( <>
) : ( <> )}
{copy}
); }; export default MobileContent;