From c01172508e55ff03da1be20b7e9e14447bb0aa8e Mon Sep 17 00:00:00 2001 From: Chung Kang Date: Sat, 14 May 2022 14:59:46 -0500 Subject: [PATCH] Fix missing commas in README example props --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 09a430b..4e3b9c6 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ These are the defaultProps of CanvasDraw. You can pass along any of these props ```javascript static defaultProps = { - onChange: null + onChange: null, loadTimeOffset: 5, lazyRadius: 30, brushRadius: 12, @@ -63,7 +63,7 @@ These are the defaultProps of CanvasDraw. You can pass along any of these props gridSizeY: 25, gridLineWidth: 0.5, hideGridX: false, - hideGridY: false + hideGridY: false, enablePanAndZoom: false, mouseZoomFactor: 0.01, zoomExtents: { min: 0.33, max: 3 },