From b6c6a8052a08ae3890246cc13b7eb736fc1a8004 Mon Sep 17 00:00:00 2001 From: Christos Koutsiaris <44162302+ckoutsiaris@users.noreply.github.com> Date: Mon, 8 Apr 2019 14:03:28 +0100 Subject: [PATCH] Correct path reference in code snippet in read.me --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0793532..71ff6a1 100644 --- a/README.md +++ b/README.md @@ -716,8 +716,8 @@ To put this all together, we need to create a store with an initial state, and s ```ts import { createStore } from 'redux'; -import { enthusiasm } from './reducers/index'; -import { StoreState } from './types/index'; +import { enthusiasm } from '../reducers/index'; +import { StoreState } from '../types/index'; const store = createStore(enthusiasm, { enthusiasmLevel: 1,