From 91fb422b41f872dec0c2eee1eedeae32747c3f69 Mon Sep 17 00:00:00 2001 From: Adam Braus Date: Sat, 10 Mar 2018 13:09:07 -0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d9fd33..528baf8 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ npm install react-phone-input --save import ReactPhoneInput from 'react-phone-input'; React.render( - , + , document.getElementById('content')); ``` @@ -23,7 +23,7 @@ Your handler for the ``onChange`` event should expect a string as parameter, where the value is that of the entered phone number. For example: ```jsx -function handeOnChange(value) { +function handelOnChange(value) { this.setState({ phone: value });