/* cfb-editor (C) 2017-present SheetJS -- http://sheetjs.com */ /* Simple Marker when a file is dirty usage: isDirty:boolean */ import React, { Component } from 'react'; import Tooltip from './Tooltip'; class DirtyBit extends Component { constructor(props) { super(props); } render() { return this.props.isDirty ? ( ** ) : ""; } } export default DirtyBit;