Skip to content

Instantly share code, notes, and snippets.

View aaqib-javed's full-sized avatar
:octocat:
Be Lazy

Muhammad Aaqib Javed aaqib-javed

:octocat:
Be Lazy
View GitHub Profile
@aaqib-javed
aaqib-javed / Example.tsx
Created April 20, 2020 05:58 — forked from stolinski/Example.tsx
Route Transitions with Framer Motion
const FakeComponent = () => {
return (
<AnimatedRoutes exitBeforeEnter initial={false}>
<RouteTransition exact path="/some-route">
<NewUsers />
</RouteTransition>
<RouteTransition exact path="/yo" >
<Users />
</RouteTransition>
</AnimatedRoutes>