0

I am using react-native-calender plugin with bare minimum example. Strangely, Unable to see the dates on left column.

enter image description here

It was expected to look something like this.

enter image description here

Label showing 9 Mon is not coming.

Hardik Shah
  • 166
  • 1
  • 10

1 Answers1

0

For me, formatting the date to YYYY-MM-DD solves the problem.

const items = {
  '2022-10-04': [
    {
      "key": "200008",
      "value": "200040",
    }
  ],
  '2022-10-06': [
    {
      "key": "200008",
      "value": "200040",
    }
  ]
}