cfahlgren1's picture
cfahlgren1 HF Staff
update provider summary
a14caa5
raw
history blame contribute delete
366 Bytes
import React from "react";
import UserSearchDialog from "./UserSearchDialog";
const Navbar: React.FC = () => {
return (
<nav className="w-full mt-4">
<div className="max-w-6xl mx-auto px-4 py-3">
<div className="flex items-center justify-end">
<UserSearchDialog />
</div>
</div>
</nav>
);
};
export default Navbar;