From a60608d51485f024388f18b05269a6e850a23213 Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Tue, 6 Mar 2018 08:42:20 -0500 Subject: [PATCH] Correct casing of importing react --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d03fbd..a3fd37b 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ module.exports = { The serialized search index will be available via graphql. Once queried, a component can create a new elastic lunr index with the value retrieved from the graphql query. Search queries can be made against the hydrated search index. The results is an array of document IDs. The index can return the full document given a document ID ```javascript -import React, {Component} from 'React'; +import React, {Component} from 'react'; import {Index} from 'elasticlunr'; // Graphql query used to retrieve the serialized search index.