yhatt / jsx-slack

Build JSON object for Slack Block Kit surfaces from JSX
https://jsx-slack.netlify.app/
MIT License
467 stars 16 forks source link

Add `<DateTimePicker>` interactive/input component #278

Closed yhatt closed 2 years ago

yhatt commented 2 years ago

A new <DateTimePicker> interactive component can use in <Actions> and <Input> layout block. It also can use as an input component by setting label prop.

Close #276.

<Modal title="Snooze">
  <DateTimePicker label="When should we remind that?" value={Date.now() + 300000} required />
  <Input type="submit" value="Set" />
</Modal>