From 55ea100e17bf9b9e99e4fdb21dd54f04f22515c2 Mon Sep 17 00:00:00 2001 From: Zeb Pykosz Date: Thu, 21 Jan 2016 20:24:03 -0500 Subject: [PATCH] fix indent and codestyle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed some tab characters and fixed spacing around props. I'd recommend just sticking to no spaces around prop values (`prop={something}`) as that's more common, even if objects outside of JSX have spaces. It's an exception – just like using double quotes in JSX. --- src/pages/Index.js | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/pages/Index.js b/src/pages/Index.js index aee9df4..e9874bb 100644 --- a/src/pages/Index.js +++ b/src/pages/Index.js @@ -21,12 +21,18 @@ const messages = defineMessages({ class Index extends Component { render() { return ( - + -
- -
- ); +
+ +
+ + + + + +
+ ); } }