diff --git a/src/components/BallotOverview.tsx b/src/components/BallotOverview.tsx index 31386a20..4ccb95cc 100644 --- a/src/components/BallotOverview.tsx +++ b/src/components/BallotOverview.tsx @@ -1,12 +1,32 @@ +import Link from "next/link"; + +import { useBallot } from "~/contexts/Ballot"; +import { useAppState } from "~/utils/state"; +import { EAppState } from "~/utils/types"; + import { AddedProjects } from "./AddedProjects"; import { VotingUsage } from "./VotingUsage"; -export const BallotOverview = (): JSX.Element => ( -
Once you have reviewed your vote allocation, you can submit your ballot.
+ {ballot.published && ( + + Check your submitted ballot + + )} +