collaborative editor - wip

This commit is contained in:
Philipinho
2023-09-15 01:22:47 +01:00
parent 0d648c17fa
commit 4382c5a1d0
21 changed files with 375 additions and 23 deletions
+3 -5
View File
@@ -7,10 +7,8 @@ export default function Home() {
const [currentUser] = useAtom(currentUserAtom);
return (
<div className="w-full flex justify-center z-10 flex-shrink-0">
<div className={`w-[900px]`}>
Hello {currentUser && currentUser.user.name}!
</div>
</div>
<>
Hello {currentUser && currentUser.user.name}!
</>
);
}