Skip to content

Instantly share code, notes, and snippets.

@s-barrah
Created July 3, 2020 00:48
Show Gist options
  • Save s-barrah/4d75f9da4b57ae1d605563da87c3f3b1 to your computer and use it in GitHub Desktop.
Save s-barrah/4d75f9da4b57ae1d605563da87c3f3b1 to your computer and use it in GitHub Desktop.
RichText component readme
<RichText
  align={'center'}
  markup={'<p>Some <strong>strong</strong> test markup</p>'}
/>
<RichText
  align={'center'}
  markup={'<p>Some <i>italic</i> test markup</p>'}
/>
<RichText
  align={'center'}
  markup={'<p>Some <u>underlined</u> test markup</p>'}
/>
<RichText
  align={'right'}
  markup={'<p>Some right aligned test markup</p>'}
/>
<RichText
  align={'left'}
  markup={'<p>Some left aligned test markup</p>'}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment