React简单时间输入
一个简单的时间输入,以灵活的格式接受时间。 它支持12小时制和24小时制。
安装
npm install react-simple-time-input --save
用法
import React , { useState } from 'react'
import SimpleTimeInput from 'react-simple-time-input'
function MyComponent ( ) {
const [ time , setTime ] = useState ( '14:00' )
const valueChanged = newValue => {
setTime ( newValue )
alert ( `Time changed to ${ newValue } ` )
}
return (
1