From 1283320997cae2a2d26ca2006059f022ae310d57 Mon Sep 17 00:00:00 2001 From: Elliot Hesp Date: Wed, 28 Feb 2018 15:06:09 +0000 Subject: [PATCH] [codorial] WIP adding missing code type --- codorials/authentication-with-firebase/integrating-redux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codorials/authentication-with-firebase/integrating-redux.md b/codorials/authentication-with-firebase/integrating-redux.md index 07621bda..6526fa88 100644 --- a/codorials/authentication-with-firebase/integrating-redux.md +++ b/codorials/authentication-with-firebase/integrating-redux.md @@ -21,7 +21,7 @@ npm install --save redux react-redux Now within our projects `src` directory, create a `store.js` file. This file will contain all of our Redux logic, however you may want to break this out into multiple directories as your projects grows in complexity. -``` +```js // src/store.js import { createStore } from 'redux';