Define how to render the component in React. Returns: The tag to render.
(self)
| 1230 | return custom_components |
| 1231 | |
| 1232 | def _render(self) -> Tag: |
| 1233 | """Define how to render the component in React. |
| 1234 | |
| 1235 | Returns: |
| 1236 | The tag to render. |
| 1237 | """ |
| 1238 | return super()._render(props=self.props) |
| 1239 | |
| 1240 | def get_prop_vars(self) -> List[BaseVar]: |
| 1241 | """Get the prop vars. |