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