emotion_classifier_tutorial / pages /5_Congratulations.py
chandralegend's picture
added tutorial content
47c3daf
raw
history blame
252 Bytes
import streamlit as st
from utils.levels import render_page, initialize_level
initialize_level()
LEVEL = 5
def complete_page():
st.header("Congratulations!")
st.subheader("You have completed the tutorial!")
render_page(complete_page, LEVEL)