File size: 324 Bytes
2994705
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import mesop as me
import wsgi_app

wsgi = wsgi_app.wsgi_app


@me.page(
  title="Mesop App Runner",
  security_policy=me.SecurityPolicy(
    allowed_iframe_parents=[
      "localhost:*",
      "https://richard-to-mesop-app-maker.hf.space",
      "https://huggingface.co",
    ]
  ),
)
def main():
  me.text("Hello World!")