Spaces:
Sleeping
Sleeping
File size: 288 Bytes
c6c0972 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import streamlit as st
FRONTEND_URL = "https://optibet.delavande.fr/"
st.set_page_config(page_title="Wrapper of optibet", layout="wide")
st.markdown(
f"""
<iframe src="{FRONTEND_URL}" width="100%" height="800" frameborder="0"></iframe>
""",
unsafe_allow_html=True,
)
|