feat: web application multipage support

This commit is contained in:
2025-08-16 19:05:24 +02:00
parent 7b652d6999
commit 84f7d41a84
38 changed files with 765 additions and 507 deletions
+10
View File
@@ -0,0 +1,10 @@
import streamlit as st
class Configuration:
def __init__(self, config):
self.config = config
def index(self):
st.title("Configuration")
st.json(self.config.model_dump())