Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
import time
|
3 |
-
|
4 |
-
|
5 |
-
# Set the page configuration for a wide view
|
6 |
-
st.set_page_config(layout="wide")
|
7 |
|
|
|
|
|
8 |
# Use large fonts to display the flashcards
|
9 |
st.markdown(f"<h1 style='text-align: center;'>{main_point}</h1>", unsafe_allow_html=True)
|
10 |
for subpoint in subpoints:
|
|
|
1 |
import streamlit as st
|
2 |
import time
|
3 |
+
# Set the page configuration for a wide view
|
4 |
+
st.set_page_config(layout="wide")
|
|
|
|
|
5 |
|
6 |
+
def display_flashcard(main_point, subpoints):
|
7 |
+
|
8 |
# Use large fonts to display the flashcards
|
9 |
st.markdown(f"<h1 style='text-align: center;'>{main_point}</h1>", unsafe_allow_html=True)
|
10 |
for subpoint in subpoints:
|