diff --git a/client/homebrew/pages/userPage/brewItem/brewItem.jsx b/client/homebrew/pages/userPage/brewItem/brewItem.jsx
deleted file mode 100644
index b0b647b86..000000000
--- a/client/homebrew/pages/userPage/brewItem/brewItem.jsx
+++ /dev/null
@@ -1,145 +0,0 @@
-require('./brewItem.less');
-const React = require('react');
-const createClass = require('create-react-class');
-const _ = require('lodash');
-const cx = require('classnames');
-const moment = require('moment');
-const request = require('superagent');
-
-const googleDriveIcon = require('../../../googleDrive.png');
-const dedent = require('dedent-tabs').default;
-
-const BrewItem = createClass({
- displayName : 'BrewItem',
- getDefaultProps : function() {
- return {
- brew : {
- title : '',
- description : '',
-
- authors : []
- }
- };
- },
-
- deleteBrew : function(){
- if(this.props.brew.authors.length <= 1){
- if(!confirm('Are you sure you want to delete this brew? Because you are the only owner of this brew, the document will be deleted permanently.')) return;
- if(!confirm('Are you REALLY sure? You will not be able to recover the document.')) return;
- } else {
- if(!confirm('Are you sure you want to remove this brew from your collection? This will remove you as an editor, but other owners will still be able to access the document.')) return;
- if(!confirm('Are you REALLY sure? You will lose editor access to this document.')) return;
- }
-
- if(this.props.brew.googleId) {
- request.get(`/api/removeGoogle/${this.props.brew.googleId}${this.props.brew.editId}`)
- .send()
- .end(function(err, res){
- location.reload();
- });
- } else {
- request.delete(`/api/${this.props.brew.editId}`)
- .send()
- .end(function(err, res){
- location.reload();
- });
- }
- },
-
- renderDeleteBrewLink : function(){
- if(!this.props.brew.editId) return;
-
- return
-
- ;
- },
-
- renderEditLink : function(){
- if(!this.props.brew.editId) return;
-
- let editLink = this.props.brew.editId;
- if(this.props.brew.googleId) {
- editLink = this.props.brew.googleId + editLink;
- }
-
- return
-
- ;
- },
-
- renderShareLink : function(){
- if(!this.props.brew.shareId) return;
-
- let shareLink = this.props.brew.shareId;
- if(this.props.brew.googleId) {
- shareLink = this.props.brew.googleId + shareLink;
- }
-
- return
-
- ;
- },
-
- renderDownloadLink : function(){
- if(!this.props.brew.shareId) return;
-
- let shareLink = this.props.brew.shareId;
- if(this.props.brew.googleId) {
- shareLink = this.props.brew.googleId + shareLink;
- }
-
- return
-
- ;
- },
-
- renderGoogleDriveIcon : function(){
- if(!this.props.brew.gDrive) return;
-
- return
-
- ;
- },
-
- render : function(){
- const brew = this.props.brew;
- const dateFormatString = 'YYYY-MM-DD HH:mm:ss';
-
- return
{brew.description}
-