const { renderToString } = require('react-dom/server') const transform = require('./transform') // These all need to be here even though eslint doesn't think so /* eslint-disable */ const React = require('react') const CodeBlock = require('../../dist/react/CodeBlock') const RedContent = require('../../dist/react/RedContent') const Timer = require('../../dist/react/Timer') const CoolTable = require('../../dist/react/CoolTable') /* eslint-enable */ const renderReact = async componentStr => { const componentName = componentStr.match(/[^<]([a-zA-Z])*/gm)[0] const jsx = `