Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function render(renderProps, store, stats) {
const markup = renderToString(
);
const head = Helmet.rewind();
const moduleIds = flushWebpackRequireWeakIds();
const js = getJs(moduleIds, stats);
const css = getCss(stats);
const initialState = store.getState();
return renderToStaticMarkup(
);
}