From c984796190d977dc3d6abb0e1d40a26ce05138aa Mon Sep 17 00:00:00 2001 From: Ovieh Mosley Date: Fri, 14 Feb 2020 19:55:42 +0000 Subject: [PATCH] Update App.js (#1858) Fixed typo. --- examples/editable-data/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/editable-data/src/App.js b/examples/editable-data/src/App.js index 0684e71..5495765 100644 --- a/examples/editable-data/src/App.js +++ b/examples/editable-data/src/App.js @@ -63,7 +63,7 @@ const EditableCell = ({ updateMyData(index, id, value) } - // If the initialValue is changed externall, sync it up with our state + // If the initialValue is changed external, sync it up with our state React.useEffect(() => { setValue(initialValue) }, [initialValue])