///
import * as React from 'react';
import * as Helmet from 'react-helmet';
const head = Helmet.rewind();
const html = `
${ head.title.toString() }
${ head.meta.toString() }
${ head.link.toString() }
// React stuff here
`;
function HTML() {
return (
{ head.title.toComponent() }
{ head.meta.toComponent() }
{ head.link.toComponent() }
// React stuff here
);
}