updated html.jsx to es6
This commit is contained in:
parent
0a4ebe5e10
commit
e68ae6737c
2 changed files with 11 additions and 14 deletions
18
html.jsx
18
html.jsx
|
|
@ -2,17 +2,11 @@ import React from 'react';
|
|||
import Typography from 'typography';
|
||||
import DocumentTitle from 'react-document-title';
|
||||
|
||||
var TypographyStyle = new Typography().TypographyStyle;
|
||||
let TypographyStyle = new Typography().TypographyStyle;
|
||||
|
||||
module.exports = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
body: ""
|
||||
};
|
||||
},
|
||||
|
||||
render: function() {
|
||||
var title, urlPrefix;
|
||||
export default class Html extends React.Component {
|
||||
render() {
|
||||
let title, urlPrefix;
|
||||
title = DocumentTitle.rewind();
|
||||
if (this.props.title) {
|
||||
title = this.props.title;
|
||||
|
|
@ -56,6 +50,6 @@ module.exports = React.createClass({
|
|||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
Html.defaultProps = { body: "" };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue