v1.1.0
v1.1.0
Added
-
react_component/3
acceptshtml_element
By default, react_component renders the react component inside a div container. If you pass a value for
html_element
as an option toreact_component/3
, it will render the component inside the specified HTML element. For example, to render the component in a span instead of a div, you can runreact_component("MyComponent", %{}, html_element: "span")
-
react_component/3
passes all other options to the HTML elementAnything else passed into
react_component/3
will be passed through directly to the component's HTML output. This could be a class name, styles, or anything else.react_component("MyComponent", %{aProp: "hello"}, style: "border-bottom: 1px solid #888")