📄️ Class
The Class component is a utility component that conditionally applies a CSS class to a div element based on a boolean condition. It is useful for toggling styles dynamically.
📄️ For
The For component can iterate over arrays and render JSX for each available item. Keys are automatically assigned.
📄️ If
The If component can be used for simple conditional rendering. It will render its children whenever the condition passed to the isTrue prop is truthy. For more complex rendering logic, you can use the Show component
📄️ Image
The Image component provides automatic fallback handling for broken images. Use this for robust media display with graceful degradation.
📄️ RenderAfter
The RenderAfter component can be used to render components or JSX code wrapped inside of it after a set delay.
📄️ Show
The Show component can be used for complex conditional rendering. The component can be extended by multiple When components and an Else component to render their contents based on the conditions you provide.
📄️ Switch
The Switch component can be used for complex conditional rendering. The component can be switch by multiple "cases" of components and an "default" component to render in case the given dynamic value does not match any case.