Spaces:
Sleeping
Sleeping
import streamlit as st | |
st.set_page_config(layout="wide") | |
with open("lunar_lander.htm", "r") as f: | |
html = f.read() | |
st.components.v1.html(html, height=450) |