Hello World!

Exercise 1.0 - Hello World

Exercise

Modify the app to add “Hello World” to the main heading.

#| standalone: true
#| components: [viewer]
#| layout: horizontal
#| viewerHeight: 800
from shiny.express import ui

ui.h1("Hello World!")
Exercise

Modify the app to add “Hello World” to the main heading.

#| standalone: true
#| components: [editor, viewer]
#| layout: horizontal
#| viewerHeight: 800
from shiny.express import ui

ui.h1("")
Exercise

Modify the app to add “Hello World” to the main heading.

#| standalone: true
#| components: [editor, viewer]
#| layout: horizontal
#| viewerHeight: 800
from shiny.express import ui

ui.h1("Hello World!")

The source code for this exercise is here.