Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion generated-docs/React/Basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ and will emit a warning.
- `didUpdate`
- The React component's `componentDidUpdate` lifecycle. Rarely necessary.
- `willUnmount`
- The React component's `componentWillUpdate` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here.
- The React component's `componentWillUnmount` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here.

The component spec is generally not exported from your component
module and this type is rarely used explicitly. `make` will validate whether
Expand Down
2 changes: 1 addition & 1 deletion src/React/Basic.purs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ import Type.Row (class Union)
-- | - `didUpdate`
-- | - The React component's `componentDidUpdate` lifecycle. Rarely necessary.
-- | - `willUnmount`
-- | - The React component's `componentWillUpdate` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here.
-- | - The React component's `componentWillUnmount` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here.
-- |
-- | The component spec is generally not exported from your component
-- | module and this type is rarely used explicitly. `make` will validate whether
Expand Down