Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -547,10 +547,10 @@ def main():
|
|
| 547 |
# shutil.copy("assets/css/tree.css", css_file)
|
| 548 |
# shutil.copy("assets/css/div.css", css_file1)
|
| 549 |
# shutil.copy("assets/css/side.css", css_file2)
|
| 550 |
-
|
| 551 |
-
|
| 552 |
-
#
|
| 553 |
-
|
| 554 |
# # Define your javascript
|
| 555 |
# my_js = """
|
| 556 |
# alert("Hello World");
|
|
|
|
| 547 |
# shutil.copy("assets/css/tree.css", css_file)
|
| 548 |
# shutil.copy("assets/css/div.css", css_file1)
|
| 549 |
# shutil.copy("assets/css/side.css", css_file2)
|
| 550 |
+
HtmlFile = open("index.html", 'r', encoding='utf-8')
|
| 551 |
+
source_code = HtmlFile.read()
|
| 552 |
+
#print(source_code)
|
| 553 |
+
components.html(source_code)
|
| 554 |
# # Define your javascript
|
| 555 |
# my_js = """
|
| 556 |
# alert("Hello World");
|