Using this package you can create a line restriction on text content. Your text content is limited to the number of lines you specify. And "..." are placed at the end of the text.
Bu paketi kullanarak, metin içeriklerinize kolayca satır sınırlandırması koyabilirsiniz. Metin içeriği, belirlediğiniz satır sayısı ile sınırlandırılır. Ve metnin sonuna "..." koyulur.
npm i max-content-line
First, import the component. Then, you have to call the component in jsx and give values to maxLine and content properties.
Öncelikle componenti import edin. Sonra, componenti çağırıp maxLine ve content özelliklerine belirlediğiniz değerleri girin.
import MaxContentLine from 'max-content-line';
<MaxContentLine
maxLine={number}
content="{your_content}"
/>
Property | Type | Description | Required |
---|---|---|---|
maxLine | number | Line count of text. | Yes |
content | string | Your content. | Yes |