Spaces:
Runtime error
Runtime error
File size: 394 Bytes
c7545c0 7158136 c7545c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
from utils.levels import complete_level, render_page, initialize_level
initialize_level()
LEVEL = 2
def step2_page():
st.header("Step 2")
st.subheader("Level 2: Introduction")
st.write("This is the second step of the tutorial. You can add your own content here.")
if st.button("Complete"):
complete_level(LEVEL)
render_page(step2_page, LEVEL) |