Skip to contents

Container Helper to create grid containers

Usage

Container(...)

Arguments

...

other props to pass to the react component.

See also

Other layout: HStack(), Item(), Page(), QCard(), VStack()

Other grid: Item()

Examples

library(shiny.quartz)
library(shiny.mui)
#> 
#> Attaching package: ‘shiny.mui’
#> The following object is masked from ‘package:shiny.quartz’:
#> 
#>     Container

component_example(
    Container(Item(xs = 6, "hello"), Item(xs = 6, "world"))
)