JSFiddle - React, Tailwind, and code Playground

by Константин Дралюк

HTML

Дата и время <input type="datetime-local">
<hr>
Дата <input type="date">
<hr>
Время <input type="time">
<hr>
Месяц и год <input type="month">
<hr>
Неделя <input type="week">

<!-- cdn for modernizr, if you haven't included it already -->
<script src="http://cdn.jsdelivr.net/webshim/1.12.4/extras/modernizr-custom.js"></script>
<!-- polyfiller file to detect and load polyfills -->
<script src="http://cdn.jsdelivr.net/webshim/1.12.4/polyfiller.js"></script>
<script>
  webshims.setOptions('waitReady', false);
  webshims.setOptions('forms-ext', {types: 'date'});
  webshims.polyfill('forms forms-ext');
</script>