React Component for Syntax Highlighting

npm downloads
import React from 'react' 
import Highlight from 'react-highlight' 
const App = () => (
  <div>
    <Highlight innerHTML={true}>{'<p>Hello world</p>'}</Highlight>
    <Highlight language="javascript">
      {function foo() { return 'bar' }}
    </Highlight>
  </div>
)
© Neostack