Skip to contents

Creates a shiny.fluent page. Code available in shiny.fluent github pages (Articles).

Usage

make_page(title = character(), subtitle = character(), contents = character())

Arguments

title

Title of the page (character)

subtitle

Subtitle of the page (character)

contents

Contents of the page (character)

Value

Shiny UI elements / HTML code

Examples

if (FALSE) {
make_page(title = "My page title", subtitle = "My page subtitle", contents = "shiny::div('My page content')")
}