weather_forecasting_tutorial / pages /4_Congratulations.py
Shafeek Saleem
ss
92e31e2
raw
history blame
No virus
355 Bytes
import streamlit as st
from utils.levels import complete_level, render_page, initialize_level
initialize_level()
LEVEL = 4
def step1_page():
st.header("Congratulations!")
st.subheader("You have completed the tutorial!")
st.write("You can now use this template to create your own tutorial.")
st.balloons()
render_page(step1_page, LEVEL)