Skip to content

Instantly share code, notes, and snippets.

@velopert
velopert / header.ts
Created February 16, 2019 14:50
Redux + TypeScript
import {
createAction,
createStandardAction,
ActionType,
} from 'typesafe-actions';
import { createReducer } from '../utils';
const SET_KEYWORD = 'header/SET_KEYWORD';
export const setKeyword = createStandardAction(SET_KEYWORD)<string>();