Skip to content

Commit c649561

Browse files
committed
Add user
1 parent 351a8ed commit c649561

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

frontend/src/app/components/collab/CodingComponent.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from "@/components/ui/dropdown-menu";
1111
import { useState } from "react";
1212
import { Button } from "@/components/ui/button";
13-
import { ChevronDown } from "lucide-react";
13+
import { ChevronDown, CircleUser } from "lucide-react";
1414

1515
export default function CodingComponent() {
1616
const [codeContent, setCodeContent] = useState<string>("");
@@ -24,7 +24,7 @@ export default function CodingComponent() {
2424

2525
return (
2626
<div className="h-full mt-5">
27-
<div className="mb-4">
27+
<div className="flex justify-between mb-4">
2828
<DropdownMenu>
2929
<DropdownMenuTrigger asChild className="flex justify-between">
3030
<Button className="w-40 bg-white text-black hover:bg-gray-500">
@@ -53,6 +53,10 @@ export default function CodingComponent() {
5353
</DropdownMenuGroup>
5454
</DropdownMenuContent>
5555
</DropdownMenu>
56+
<div className="flex justify-center items-center">
57+
<div className="text-white mr-3">[email protected]</div>
58+
<CircleUser className="text-white mr-2" size="25"/>
59+
</div>
5660
</div>
5761
<Editor
5862
height="85vh"

0 commit comments

Comments
 (0)