You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having problems using liquid-route with project upgraded from Preact 8 to Preact X;
When visiting /login, nothing is rendered with this: <LiquidRoute animator={PopAnimation} path="/login" component={Login}/>
but changing it to not use liquid-route, like this, works: Route path="/login" component={Login} /> or <Login path="/login"/>
liquid-route worked perfectly in Preact 8, but not in Preact X.
I have seen that you have deprecated AsyncRoute, so what is the fate of LiquidRoute?
The text was updated successfully, but these errors were encountered:
That sounds great.
I hope there is a practical way to support Preact X, as I really think the animations liquid-route provides is a great (and easy) addition to most Preact apps :)
Perhaps Suspense and lazy could be used for Preact X support?
I am having problems using liquid-route with project upgraded from Preact 8 to Preact X;
When visiting /login, nothing is rendered with this:
<LiquidRoute animator={PopAnimation} path="/login" component={Login}/>
but changing it to not use liquid-route, like this, works:
Route path="/login" component={Login} />
or<Login path="/login"/>
liquid-route worked perfectly in Preact 8, but not in Preact X.
I have seen that you have deprecated AsyncRoute, so what is the fate of LiquidRoute?
The text was updated successfully, but these errors were encountered: