Y1OV commited on
Commit
bcb9b33
1 Parent(s): 0e55551

Delete streamlit_app.py

Browse files
Files changed (1) hide show
  1. streamlit_app.py +0 -17
streamlit_app.py DELETED
@@ -1,17 +0,0 @@
1
- import streamlit as st
2
-
3
- main_page = st.Page("main.py", title="Главная"
4
- )
5
- Leaderboard_page = st.Page("Leaderboard.py", title="Лидерборд"
6
- )
7
-
8
- pg = st.navigation(
9
- {
10
- "Main": [main_page, Leaderboard_page],
11
- }
12
- )
13
- st.set_page_config(page_title="Leaderboard", layout="wide", page_icon="🏆",
14
- )
15
- pg.run()
16
-
17
-