midterms: add CO, additional markets

This commit is contained in:
mantikoros 2022-09-30 01:30:45 -05:00
parent f892c92e26
commit 95c47aba1a

View File

@ -67,6 +67,12 @@ const senateMidterms: StateElectionMarket[] = [
slug: 'will-mike-lee-win-the-2022-utah-sen',
isWinRepublican: true,
},
{
state: 'CO',
creatorUsername: 'SG',
slug: 'will-michael-bennet-win-the-2022-co',
isWinRepublican: false,
},
]
const App = () => {
@ -84,6 +90,25 @@ const App = () => {
height={400}
className="mt-8"
></iframe>
<div className="mt-8 text-2xl">Related markets</div>
<iframe
src="https://manifold.markets/BoltonBailey/will-democrats-maintain-control-of"
title="Will the Democrats control the House after the Midterms?"
frameBorder="0"
width={800}
height={400}
className="mt-8"
></iframe>
<iframe
src="https://manifold.markets/SG/will-a-democrat-win-the-2024-us-pre"
title="Will a Democrat win the 2024 US presidential election?"
frameBorder="0"
width={800}
height={400}
className="mt-8"
></iframe>
</Col>
</Page>
)