2023-09-24 23:49:24 -06:00
|
|
|
import VoteUI from "@/(client)/room/[id]/VoteUI";
|
|
|
|
|
2023-09-06 13:00:01 -06:00
|
|
|
export default function Room() {
|
2023-04-20 04:20:00 -06:00
|
|
|
return (
|
2023-08-29 18:14:54 -06:00
|
|
|
<div className="flex flex-col items-center justify-center text-center gap-2">
|
2023-09-06 13:00:00 -06:00
|
|
|
<VoteUI />
|
2023-08-29 18:14:54 -06:00
|
|
|
</div>
|
2023-04-20 04:20:00 -06:00
|
|
|
);
|
2023-09-01 19:43:15 -06:00
|
|
|
}
|