diff --git a/package.json b/package.json index 6762e89..edc11ff 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,8 @@ "rules": { "react/boolean-prop-naming": "off", "react/forbid-component-props": "off", - "unicorn/filename-case": "off" + "unicorn/filename-case": "off", + "no-new-object": "off" }, "parser": "babel-eslint" }, diff --git a/src/components/Row.js b/src/components/Row.js index 5fc73a2..ceb0a35 100644 --- a/src/components/Row.js +++ b/src/components/Row.js @@ -1,7 +1,6 @@ import React, {Children, cloneElement} from 'react'; import PropTypes from 'prop-types'; import getAttrs from '../util/getAttrs'; -import Column from './Column'; /** * Grid row. Use this to define a grid containing a set of columns. @@ -20,7 +19,7 @@ export default function Row(props) {
{/* `first` and `last` props are added to the first and last child in the row, respectively */}