Skip to content

Commit

Permalink
Merge pull request #2132 from reactioncommerce/brent-fix-issue-2112
Browse files Browse the repository at this point in the history
Resolve missing import
  • Loading branch information
kieckhafer authored Apr 18, 2017
2 parents 7e31fb5 + 808366e commit ad16176
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import React, { Component, PropTypes } from "react";
import moment from "moment";
import { Icon } from "/imports/plugins/core/ui/client/components";
import { i18next } from "/client/api";

class EmailTableColumn extends Component {
static propTypes = {
data: PropTypes.object,
data: PropTypes.oneOfType([
PropTypes.string,
PropTypes.instanceOf(Date)
]),
metadata: PropTypes.object,
rowData: PropTypes.object
}
Expand Down

0 comments on commit ad16176

Please sign in to comment.