Skip to content

Instantly share code, notes, and snippets.

View AndresRodH's full-sized avatar
🇻🇪
👾

Andres Rodriguez AndresRodH

🇻🇪
👾
View GitHub Profile
@AndresRodH
AndresRodH / machine.js
Last active November 28, 2020 15:44
Example 3
const doTheThingMachine = Machine({
id: 'do-the-thing',
initial: 'validating',
states: {
validating: {
invoke: {
src: 'validateArgs',
onDone: 'handlingThings',
onError: {
target: 'failure',
@AndresRodH
AndresRodH / machine.js
Last active November 28, 2020 15:55
Example 4
const doTheThingMachine = Machine({
id: 'do-the-thing',
initial: 'validating',
states: {
validating: {
invoke: {
src: 'validateArgs',
onDone: 'handlingThings',
onError: {
target: 'failure',
@AndresRodH
AndresRodH / breadcrumbs.tsx
Last active November 23, 2021 18:29
react-location breadcrumbs
import {MakeGenerics, Route} from 'react-location'
type LocationGenerics = MakeGenerics<{
Params: {
teamId: string
}
RouteMeta: {
breadcrumb: (params: LocationGenerics['Params']) => React.ReactElement
}
}>