buildo / react-components

Collection of general React components used in buildo projects.
http://react-components.buildo.io/
MIT License
157 stars 21 forks source link

[FormattedText] Avoid using children #1086

Open gabro opened 7 years ago

gabro commented 7 years ago

Project card

requirements

FormattedText uses children for the content, making it difficult and ambiguous to type.

Proposal: use a content or value prop so:

const content = 'foo \n bar';

// Before
<FormattedText>{content}</FormattedText>

// After
<FormattedText content={content} />