Declare the React components defined in your app.
react_component(name)A function representing the component.
There are three steps to add a React component to your Rhino application:
Define the component using JSX and register it with Rhino.registerReactComponents().
Declare the component in R with rhino::react_component().
Use the component in your application.
Please refer to the Tutorial: Use React in Rhino to learn about the details.
# Declare the component.
TextBox <- react_component("TextBox")
# Use the component.
ui <- TextBox("Hello!", font_size = 20)