I hereby claim:
- I am estrattonbailey on github.
- I am estrattonbailey (https://keybase.io/estrattonbailey) on keybase.
- I have a public key ASAkikBjIvQqTw9KAn8t2VHLkG4Czi_bdnatKfFctqrClgo
To claim this, I am signing this object:
| const app = 'bluesky' |
| type CacheResponse<T> = { | |
| data: T; | |
| stale: boolean; | |
| }; | |
| type CacheEnvelope<T> = { | |
| data: T; | |
| options: { | |
| staleAt?: number; | |
| }; |
| git branch -m master main | |
| git fetch origin | |
| git branch -u origin/main main | |
| git remote set-head origin -a |
| ~/test.sh index.mjs [-w] |
I hereby claim:
To claim this, I am signing this object:
| import { Button } from '@components/Button'; | |
| import * as Type from '@components/Typography'; | |
| import Box from '@components/Box'; | |
| import Gutter from '@components/Gutter'; | |
| import Container from '@components/Container'; | |
| import { useSteps, Step } from '@components/Steps'; | |
| enum StepIds { | |
| ONE = 'one', | |
| TWO = 'two', |
| import * as React from 'react'; | |
| import { createPortal } from 'react-dom'; | |
| import { tack } from 'tackjs'; | |
| const Context = React.createContext<any>({}); | |
| export function Overlay() {} | |
| export function getCoords(element: HTMLElement) { | |
| const { |
| import * as React from 'react'; | |
| import { useDropzone, DropzoneProps, DropzoneState } from 'react-dropzone'; | |
| import { Omit } from '@utils/typescript'; | |
| import Box from '@components/Box'; | |
| import { Button } from '@components/Button'; | |
| import { H5, P } from '@components/Typography'; | |
| import IconCircleCheckFull from '@icons/CircleCheckFull'; |
| /* eslint-disable */ | |
| import * as React from 'react'; | |
| import { act } from 'react-dom/test-utils'; | |
| import { mount } from 'enzyme'; | |
| import { Provider } from 'react-redux'; | |
| import store from '@services/store'; | |
| import { AUTH_HYDRATE, AUTH_SET_IS_LOGGED_IN } from '@services/reducers/auth/types'; | |
| import { UserRole } from '@api/auth/types'; |
| function Lag<T>({ | |
| value, | |
| ttl, | |
| children, | |
| }: { | |
| value: T; | |
| ttl: number; | |
| children(value: T): any; | |
| }) { | |
| const [cache, setCache] = React.useState(value); |