This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// React JSON Editor wrapper | |
// JSON Editor by Jos de Jong - https://github.com/josdejong/jsoneditor | |
// Based on post by Hassan Khan - https://github.com/josdejong/jsoneditor/issues/274#issuecomment-263986071 | |
// Wrapper By Ian Grossberg - https://gist.github.com/yoiang/6f82874f4fd8fc1a37631dc9cad27172 | |
import React, { Component, PropTypes } from 'react'; | |
import JSONEditor from 'jsoneditor'; | |
import cloneDeep from 'lodash.clonedeep'; | |
import isEqual from 'lodash.isequal'; |