pollo/app/(client)/room/[id]/page.tsx

12 lines
244 B
TypeScript
Raw Normal View History

2023-09-24 23:49:24 -06:00
import VoteUI from "@/(client)/room/[id]/VoteUI";
export const runtime = "edge";
2023-08-27 23:57:17 -06:00
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
}