mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-25 04:53:00 -05:00
13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
import usePlusVoting from "../hooks/usePlusVoting";
|
|
|
|
export default function PlusVotingPage() {
|
|
const { isLoading, usersToVoteOn } = usePlusVoting();
|
|
|
|
if (isLoading) return null;
|
|
return (
|
|
<h1>
|
|
<pre>{JSON.stringify(usersToVoteOn, null, 2)}</pre>
|
|
</h1>
|
|
);
|
|
}
|