Repository URL to install this package:
|
Version:
2.0.0-beta.20 ▾
|
/**
* @module responsible for generating the HTML page response
* @see the react application middleware
*/
import React from 'react';
import { ServerHTMLProps } from './typings';
declare class ServerHTML extends React.PureComponent<ServerHTMLProps> {
render(): JSX.Element;
}
export { ServerHTML };
export default ServerHTML;