Skip to content

Commit

Permalink
allow mapping path params to types coercable from string
Browse files Browse the repository at this point in the history
  • Loading branch information
zth committed Aug 19, 2024
1 parent 5cfc1ec commit 06b041a
Show file tree
Hide file tree
Showing 19 changed files with 738 additions and 49 deletions.
5 changes: 5 additions & 0 deletions .changeset/curly-cycles-rush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"rescript-relay-router": minor
---

Allow mapping path params to type coercable from string.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
let renderer = Routes.Root.Todos.ByStatusDecoded.Child.Route.makeRenderer(
~prepare=_props => {
()
},
~render=_props => {
React.null
},
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
let renderer = Routes.Root.Todos.ByStatusDecoded.Route.makeRenderer(
~prepare=_props => {
()
},
~render=_props => {
React.null
},
)

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 06b041a

Please sign in to comment.