react-native-number-please icon indicating copy to clipboard operation
react-native-number-please copied to clipboard

Example in README is missing a closing brace `]`

Open iamhenry opened this issue 5 years ago • 1 comments

Currently

const date = [
    { id: "day", label: "", min: 0, max: 31 },
    { id: "month", label: "", min: 0, max: 12 },
    { id: "year", label: "", min: 1900, max: new Date().getFullYear()
  },

Should be

const date = [
    { id: "day", label: "", min: 0, max: 31 },
    { id: "month", label: "", min: 0, max: 12 },
    { id: "year", label: "", min: 1900, max: new Date().getFullYear()},
    ];

😊

iamhenry avatar May 19 '20 16:05 iamhenry

Thank you!

thebiltheory avatar Jun 07 '20 11:06 thebiltheory