1.0.2 • Published 7 years ago
@16g/react-simple-format v1.0.2
@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-formatUsage
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 |