Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-reactix
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
purescript-reactix
Commits
03c4cc79
Commit
03c4cc79
authored
Jan 29, 2021
by
James Laver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oops
parent
d31cf321
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
React.purs
src/Reactix/React.purs
+2
-2
No files found.
src/Reactix/React.purs
View file @
03c4cc79
...
...
@@ -217,13 +217,13 @@ createRef _ = react ... "createRef" $ []
readRef :: forall r. Ref r -> r
readRef r = r .. "current"
readRefM :: forall
m. Monad m -
> Ref r -> m r
readRefM :: forall
r m. Monad m =
> Ref r -> m r
readRefM r = delay r (pure <<< readRef)
readNullableRef :: forall r. Ref (Nullable r) -> Maybe r
readNullableRef r = toMaybe $ r .. "current"
readNullableRefM :: forall r
.
Ref (Nullable r) -> Effect (Maybe r)
readNullableRefM :: forall r
m. Monad m =>
Ref (Nullable r) -> Effect (Maybe r)
readNullableRefM r = delay r (pure <<< readNullableRef)
setRef :: forall r. Ref r -> r -> Effect Unit
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment