Create a React component
component(name, varArgs = list())
Name of the React component, which must start with an upper-case character.
Attributes and children of the element to pass along to
tag
as varArgs
.
An htmltools tag
object
component("ParentComponent",
list(
x = 1,
y = 2,
component("ChildComponent"),
component("OtherChildComponent")
)
)
#> <ParentComponent x="1" y="2">
#> <ChildComponent></ChildComponent>
#> <OtherChildComponent></OtherChildComponent>
#> </ParentComponent>