function Notifications({ count = 3 }) { return ( <div> <h2>Inbox</h2> {count > 0 && <span className="badge">{count} new</span>} </div> ); } export default Notifications;