Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Fix missing commas in README example props #144

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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 },
Expand Down