traxxx/assets/views/layout.jsx

24 lines
461 B
React
Raw Normal View History

2019-05-08 03:50:13 +00:00
'use strict';
const React = require('react');
class Layout extends React.Component {
render() {
return (
<html lang="en">
<head>
<title>Traxxx</title>
<link href="/css/style.css" rel="stylesheet" />
</head>
<body>
{this.props.children}
</body>
</html>
);
}
}
module.exports = Layout;