aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/components/page/Index.js
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2018-01-28 20:00:44 +0100
committerNoah Loomans <noahloomans@gmail.com>2018-01-28 20:00:44 +0100
commit9a9edd1865d619caada787231c8bb34be25af3af (patch)
treeacd21e2654d6c5e70dc41c675972794ce95b4062 /src/client/react/components/page/Index.js
parentdde583c2fa9b990e1d30f7292f9cf28d9310e570 (diff)
Give IndexPage and UserPage the correct namereact
Diffstat (limited to 'src/client/react/components/page/Index.js')
-rw-r--r--src/client/react/components/page/Index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/react/components/page/Index.js b/src/client/react/components/page/Index.js
index c2994c9..e5e47c5 100644
--- a/src/client/react/components/page/Index.js
+++ b/src/client/react/components/page/Index.js
@@ -2,7 +2,7 @@ import React from 'react';
import Search from '../container/Search';
import HelpBox from '../container/HelpBox';
-const App = () => (
+const IndexPage = () => (
<div className="page-index">
<div className="container">
<img src="/icons/mml-logo.png" alt="Metis" />
@@ -12,4 +12,4 @@ const App = () => (
</div>
);
-export default App;
+export default IndexPage;