solid-router
solid-router copied to clipboard
A universal router for Solid inspired by Ember and React Router
I've been trying to write tests that involve `solid-app-router`. The idea is to use `solid-testing-library` with `jest` in an application that uses `solid-app-router`. So far I'm stopped by a very...
```jsx import { Outlet } from "solid-app-router"; function PageWrapper () { return We love our users! Back Home } ``` In this example, it seems that there is no way...
This is likely out of the scope for the time being, especially since the feature is still locked behind the `chrome://flags/#document-transition` flag in chrome canary. Some resources on the incoming...
The documentation on this package is pretty bad. I mean I saw a lot of functions I could make use of, but I don't understand their code, and they are...
I fell in love using https://github.com/mikeplus64/solid-typefu-router5 Now I'm missing this ability to see available routes and its params when using `navigate` from 'useNavigate', `Link` and so on. I think it's...
There is this relatively rare error I am seeing pop up in Sentry and was wondering if you could take a look: TypeError N.composedPath is not a function ../../node_modules/solid-app-router/dist/routing.js in...
Hi! I have the next router config: ```js const routes = [ { path: "/sign-in", component: () => SignIn }, { path: "/", component: () => ( ), children: [...
First of All, I would like to say Thanks for an Awesome Work in solid-app-router & it's integration with Solid Start. I have seen Scroll Restoration or History API in...
Uncaught SyntaxError: The requested module '/node_modules/solid-app-router/dist/index.jsx' does not provide an export named 'Routes', any solution?
The official router for Vue.js has a feature called ["Named routes"](https://router.vuejs.org/guide/essentials/named-routes.html#named-routes). It makes it possible to give the routes a separate name to refer to them instead of using the...