Alurkerja v1.0.0@Beta

InputDate

Base

Typescript
import { InputDate } from 'alurkerja-ui'
export const InputDatePage = () => {
	return(
		<InputDate />
	)
}

Formating

ref: https://reactdatepicker.com/#example-custom-date-format

Typescript
import { InputDate } from 'alurkerja-ui'
export const InputDatePage = () => {
	return(
		<InputDate dateFormat='dd MM yyyy' />
	)
}

DefaultValue

Typescript
import { InputDate } from 'alurkerja-ui'
export const InputDatePage = () => {
	return(
		<InputDate defaulValue={new Date('2000-06-26')} />
	)
}