Module
React.Halo.Internal.Types
- Package
- purescript-react-halo
- Repository
- robertdp/purescript-react-halo
#Lifecycle Source
data Lifecycle props action
The Halo lifecycle events.
Initialize
contains the initial props. It occurs when the component mounts, and only once per component.Update
contains the previous and new props. It occurs when the component re-renders and the props have changes.Action
contains the dispatched action. It occurs each time an action is dispatched to be eval'd, up until theFinalize
event.Finalize
occurs when the component unmounts.
Constructors
Initialize props
Update props props
Action action
Finalize