Skip to content

Commit

Permalink
fix examples using date/time
Browse files Browse the repository at this point in the history
  • Loading branch information
danphilibin committed Jul 29, 2022
1 parent 97d8573 commit 27e0728
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/examples/basic/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const interval = new Interval({
disabled: true,
placeholder: 'Text goes here',
}),
io.experimental.datetime('Date & time', { disabled: true }),
io.input.datetime('Date & time', { disabled: true }),
io.input.boolean('Boolean input', { disabled: true }),
io.select.single('Select something', {
options: [1, 2, 3],
Expand Down Expand Up @@ -185,8 +185,8 @@ const interval = new Interval({
],
disabled: true,
}),
io.experimental.date('Date input', { disabled: true }),
io.experimental.time('Time input', { disabled: true }),
io.input.date('Date input', { disabled: true }),
io.input.time('Time input', { disabled: true }),
io.experimental.input.file('File input', { disabled: true }),
])

Expand Down

0 comments on commit 27e0728

Please sign in to comment.