Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 255 Bytes

maxLength.md

File metadata and controls

15 lines (11 loc) · 255 Bytes

Component prop mode

Prop mode usually use in component Input、Textarea, used to control maximum number of characters

Usage

import { Input } from 'lvlgjs-ui'

function Component () {
    return (
        <Input maxLength={90} >
    )
}