minhwai commited on
Commit
221e808
β€’
1 Parent(s): 3339ed0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -4,14 +4,13 @@ import streamlit as st
4
  st.title("Pikatu Therapy")
5
 
6
  # HTML 파일 1 ν‘œμ‹œ
7
- st.header("Page 1")
8
  with open("page1.html", "r", encoding="utf-8") as file:
9
  html1 = file.read()
10
  st.components.v1.html(html1, height=600)
11
 
12
- # HTML 파일 2 ν‘œμ‹œ
13
- st.header("Page 2")
14
- with open("page2.html", "r", encoding="utf-8") as file:
15
- html2 = file.read()
16
- st.components.v1.html(html2, height=600)
17
 
 
4
  st.title("Pikatu Therapy")
5
 
6
  # HTML 파일 1 ν‘œμ‹œ
 
7
  with open("page1.html", "r", encoding="utf-8") as file:
8
  html1 = file.read()
9
  st.components.v1.html(html1, height=600)
10
 
11
+ # # HTML 파일 2 ν‘œμ‹œ
12
+ # st.header("Page 2")
13
+ # with open("page2.html", "r", encoding="utf-8") as file:
14
+ # html2 = file.read()
15
+ # st.components.v1.html(html2, height=600)
16