Richard
Add hello world Mesop app
67cb410
raw
history blame contribute delete
182 Bytes
import mesop as me
@me.page(
title="Home",
security_policy=me.SecurityPolicy(
allowed_iframe_parents=["https://huggingface.co"]
),
)
def home():
me.text("Hello, world")