You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
"""Stemwijzer page — quiz to find your matching MP."""
|
|
|
|
|
|
import streamlit as st
|
|
|
|
|
|
st.set_page_config(
|
|
|
page_title="Stemwijzer",
|
|
|
page_icon="🗳️",
|
|
|
layout="centered",
|
|
|
)
|
|
|
|
|
|
from explorer import build_mp_quiz_tab
|
|
|
|
|
|
build_mp_quiz_tab("data/motions.db")
|
|
|
|