import React from "react"; function Navbar({ title, subtitle }) { return (

{title}

{subtitle}

); } export default Navbar;