diff --git a/packages/react-devtools-shared/src/devtools/views/Components/OpenInEditorButton.js b/packages/react-devtools-shared/src/devtools/views/Components/OpenInEditorButton.js index 2ca44a623b..b739a06028 100644 --- a/packages/react-devtools-shared/src/devtools/views/Components/OpenInEditorButton.js +++ b/packages/react-devtools-shared/src/devtools/views/Components/OpenInEditorButton.js @@ -23,7 +23,7 @@ type Props = { symbolicatedSourcePromise: Promise, }; -function OpenInEditorButton({ +function OpenSymbolicatedSourceInEditorButton({ editorURL, source, symbolicatedSourcePromise, @@ -45,4 +45,17 @@ function OpenInEditorButton({ ); } +function OpenInEditorButton(props: Props): React.Node { + return ( + + + + }> + + + ); +} + export default OpenInEditorButton;