Skip to content

Instantly share code, notes, and snippets.

View malko42's full-sized avatar
💭
:shipit:

Maxime Daffis malko42

💭
:shipit:
View GitHub Profile
@SugarDarius
SugarDarius / sync-react-reducer-with-session-storage.tsx
Last active June 2, 2020 11:55
Sync React Reducer with session storage
import * as React from 'react';
import { useReducerSyncSessionStorage } from '../hooks';
export const aStateAction = '@@my-reducer/A_STATE_ACTION';
export type Action<A, P = {}> = {
type: A;
payload?: P;
}