From 4e904defdf2a40129e2c71bb5129b425015df661 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 6 Aug 2018 11:21:38 +0900 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 263ffe0..258649a 100644 --- a/README.md +++ b/README.md @@ -520,7 +520,7 @@ This `const`/`type` pattern allows us to use TypeScript's string literal types i Next, we'll create a set of actions and functions that can create these actions in `src/actions/index.tsx`. ```ts -import * as constants from '../constants' +import * as constants from '../constants'; export interface IncrementEnthusiasm { type: constants.INCREMENT_ENTHUSIASM;