📄️ 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
📄️ 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.