Skip to content

preact-iso 2.0.0

Compare
Choose a tag to compare
@marvinhagemeister marvinhagemeister released this 02 May 09:16
· 758 commits to main since this release
43da1f1

Major Changes

  • 8e8690a #557 Thanks @marvinhagemeister! - Fix route params being able to overwrite route context. This is a breaking change in that params no need to be pulled off a params object instead of accessing it directly
// Example route: /foo/:id

// before
const id = useRoute().id

// after
const id = useRoute().params.id

Patch Changes