Spaces:
Runtime error
Runtime error
File size: 252 Bytes
2c729ba | 1 2 3 4 5 6 7 8 9 | import streamlit as st
import streamlit.components.v1 as components
st.set_page_config(page_title="Greek City Shooter", layout="wide")
with open("index.html", "r", encoding="utf-8") as f:
html = f.read()
components.html(html, height=800) |