Skip to content
Merged
Prev Previous commit
Next Next commit
es6 import
  • Loading branch information
Nicole Levy committed Apr 6, 2018
commit e3416ee02e9a96bb41688ff12273b9c545e9c055
4 changes: 2 additions & 2 deletions packages/react/src/ReactElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import {REACT_ELEMENT_TYPE} from 'shared/ReactSymbols';

import ReactCurrentOwner from './ReactCurrentOwner';

const hasOwnProperty = Object.prototype.hasOwnProperty;
import invariant from 'fbjs/lib/invariant';

const invariant = require('fbjs/lib/invariant');
const hasOwnProperty = Object.prototype.hasOwnProperty;

const RESERVED_PROPS = {
key: true,
Expand Down