2016-04-29 03:02:51 +08:00
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
|
|
|
|
|
|
|
import Navbar from './Navbar.jsx';
|
|
|
|
|
|
|
|
class NavbarContainer extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Navbar {...this.props}>
|
|
|
|
{this.props.children}
|
|
|
|
</Navbar>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default createContainer(() => {
|
|
|
|
return {
|
2016-05-04 04:40:46 +08:00
|
|
|
presentationTitle: 'IMDT 1004 Design Process',
|
2016-04-29 03:02:51 +08:00
|
|
|
hasUnreadMessages: true,
|
|
|
|
};
|
|
|
|
}, NavbarContainer);
|