From b1dcd071ea5efff439cf764421d11b0c965fd1ea Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Fri, 9 Feb 2018 10:12:28 -0600 Subject: [PATCH] Fix indentation in README code snippet 2 spaces instead of tabs. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 70feb3bae8..d4c944b820 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,8 @@ class App extends React.Component { console.log(`Selected: ${selectedOption.label}`); } render() { - const { selectedOption } = this.state; - const value = selectedOption && selectedOption.value; + const { selectedOption } = this.state; + const value = selectedOption && selectedOption.value; return (