@16g/react-simple-format
v1.0.2
Published
Simple format component like Ruby on Rails [simple_format](https://apidock.com/rails/ActionView/Helpers/TextHelper/simple_format)
Downloads
107
Readme
@16g/react-simple-format
Simple format component like Ruby on Rails simple_format inspired by rilkevb/react-simple-format
Installation
npm i --save @16g/react-simple-format
Usage
import SimpleFormat from '@16g/react-simple-format';
const text = "paragraph\n\nand another one";
<SimpleFormat text={text} />
Props
| Props | Type | Default | Description |
|:---|:---|:---|:---|
| text | string | undefined | Text will be formatted simply |
| wrapperTag | string | 'p' | HTML tag wraps paragraph of text
|
| prefix | node | undefined | Node prepended to paragraph |
| postfix | node | undefined | Node appended to paragraph |