Skip to content

Instantly share code, notes, and snippets.

@benja
benja / keybindings.json
Last active December 18, 2022 15:19
Visual Studio Code — Exclude .gitignore files on command
[
{
"key": "shift+cmd+[Period]",
"command": "settings.cycle.explorer.excludeGitIgnore"
},
]
@stolinski
stolinski / Example.tsx
Last active June 8, 2022 05:54
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>