aieye_tutorial_template / pages /3_Congratulations.py
chandralegend's picture
added template
c7545c0
raw
history blame
298 Bytes
import streamlit as st
from utils.levels import complete_level, render_page
LEVEL = 3
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.")
render_page(step1_page, LEVEL)