import React, { PropTypes, Component } from 'react';
import { FormattedMessage, intlShape } from 'react-intl';
import { Button } from 'react-bootstrap';
import { ModalTrigger } from "meteor/nova:core";
const PostsNewButton = (props, context) => {
const size = context.currentUser ? "large" : "small";
const button = ;
return (
)
}
PostsNewButton.displayName = "PostsNewButton";
PostsNewButton.contextTypes = {
currentUser: React.PropTypes.object,
intl: intlShape
}
module.exports = PostsNewButton;
export default PostsNewButton;