Minor improvement.

This commit is contained in:
Daniel
2023-02-09 04:02:20 +03:30
parent 18387e2dde
commit eadf021939
3 changed files with 15 additions and 7 deletions
+10 -1
View File
@@ -1,3 +1,12 @@
import { signOut } from "next-auth/react";
export default function Navbar() {
return <div>Navbar</div>;
return (
<div className="flex justify-between p-5">
<p>Navbar</p>
<div onClick={() => signOut()} className="cursor-pointer w-max">
Sign Out
</div>
</div>
);
}