From a6b2846dff6db13d82c4a220d3cf77fcdb152ef9 Mon Sep 17 00:00:00 2001 From: Ehiber Graterol <56272634+ehiber@users.noreply.github.com> Date: Tue, 26 Jan 2021 09:11:45 -0400 Subject: [PATCH] Fix bug: resolved an error about propsTypes Fix bug: resolved an error about propsTypes in index.js. propTypes: {...} its change propTypes ={...} at line 53 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 2b718ee..b17f146 100644 --- a/index.js +++ b/index.js @@ -50,7 +50,7 @@ const styles = StyleSheet.create({ }); class PercentageCircle extends Component { - propTypes: { + propTypes= { color: React.PropTypes.string, bgcolor: React.PropTypes.string, innerColor: React.PropTypes.string,