import React from 'react' import '../utils/prism' export default class CodeHighlight extends React.Component { render () { const { language, children } = this.props return (
        
          {children()}
        
      
) } componentDidMount () { window.Prism.highlightAll() } componentDidUpdate () { window.Prism.highlightAll() } }