diff --git a/web/client/components/data/featuregrid/toolbars/TButton.jsx b/web/client/components/data/featuregrid/toolbars/TButton.jsx index 84e746f93c..7cb4660ea3 100644 --- a/web/client/components/data/featuregrid/toolbars/TButton.jsx +++ b/web/client/components/data/featuregrid/toolbars/TButton.jsx @@ -5,7 +5,8 @@ * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ -import React from 'react'; +import React, { forwardRef } from 'react'; + import { Button, Glyphicon } from 'react-bootstrap'; const hideStyle = { @@ -15,15 +16,14 @@ const hideStyle = { }; const normalStyle = {}; const getStyle = (visible) => visible ? normalStyle : hideStyle; - -export const SimpleTButton = ({disabled, id, visible, onClick, glyph, active, className = "square-button", ...props}) => { - return (); -}; +}); export default SimpleTButton;