awacke1's picture
Update app.py
e39be7a verified
raw
history blame
164 Bytes
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)