import { ExclamationTriangle } from "react-bootstrap-icons"; const MobileContent = ({ isDashboard }) => { const copy = isDashboard ? ( <>

Novodraft is a desktop application. The functionailty of your Dashboard in mobile mode is limited to displaying stats and important notifications.

Please login on your desktop device to use all of the features of your Dashboard.

) : ( "Novodraft is a desktop application. Please login on your desktop device to use this feature." ); return ( <>
{!isDashboard ? ( <>
) : ( <>
Notification Center

No new notifications

)}
{isDashboard ? ( <>
{copy}
) : (
{copy}
)}
); }; export default MobileContent;