From b2e9ed673e0df29cc71efe78385dc4c122d2750c Mon Sep 17 00:00:00 2001 From: Aaron Carlino Date: Tue, 27 Mar 2018 13:52:42 +1300 Subject: [PATCH] Minor docs update --- .../07_ReactJS_Redux_and_GraphQL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/07_ReactJS_Redux_and_GraphQL.md b/docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/07_ReactJS_Redux_and_GraphQL.md index 4311bce61..549590202 100644 --- a/docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/07_ReactJS_Redux_and_GraphQL.md +++ b/docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/07_ReactJS_Redux_and_GraphQL.md @@ -867,7 +867,7 @@ The best thing you can do to make your code extensible is to use `Injector` earl First, let's break up the list into smaller components. -*myapp/client/components/notesList.js* +*myapp/client/components/NotesList.js* ```js import React from 'react'; import { inject } from 'lib/Injector'; @@ -885,7 +885,7 @@ export default inject( }) )(NotesList); ``` -*myapp/client/components/notesListItem.js* +*myapp/client/components/NotesListItem.js* ```js import React from 'react';