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 ? "small" : "large";
const button = ;
return (
)
}
PostsNewButton.displayName = "PostsNewButton";
PostsNewButton.contextTypes = {
intl: intlShape
}
module.exports = PostsNewButton;
export default PostsNewButton;