Skip to content

Commit

Permalink
Add results columns to results page
Browse files Browse the repository at this point in the history
  • Loading branch information
camilovegag committed May 9, 2024
1 parent 55bcfd8 commit bf3039b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/berlin/src/pages/Results.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { Grid } from '../components/containers/Grid.styled';
import { Title } from '../components/typography/Title.styled';
import ResultCard from '../components/result-card';
import StatCard from '../components/stat-card';
import ResultsColumns from '../components/results-columns';

function Results() {
const [expandedIndex, setExpandedIndex] = useState<number | null>(null);
Expand Down Expand Up @@ -61,6 +62,7 @@ function Results() {
return (
<FlexColumn $gap="2rem">
<BackButton />
<ResultsColumns />
<Title>Results for: {cycle?.forumQuestions?.[0].questionTitle}</Title>
<FlexColumn>
{optionStatsArray.map((option, index) => (
Expand Down

0 comments on commit bf3039b

Please sign in to comment.