File size: 300 Bytes
2b4d75c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Form / Frame / Path
# Use a #frame component in a #form card to display external web pages.
# ---
from h2o_wave import site, ui

page = site['/demo']

page['example'] = ui.form_card(
    box='1 1 -1 -1',
    items=[
        ui.frame(path='https://example.com', height='450px')
    ]
)

page.save()