We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 638eff3 commit dbbf4faCopy full SHA for dbbf4fa
src/SqlEditor.js
@@ -484,4 +484,5 @@ const SqlEditorWithContext: StatelessFunctionalComponent<
484
return <SqlEditor {...props} ReactGA={ReactGA} />;
485
};
486
487
+export {SqlEditor};
488
export default SqlEditorWithContext;
src/SqlEditor.test.js
@@ -2,7 +2,7 @@ import React from 'react';
2
import {shallow} from 'enzyme';
3
4
import Editor from 'react-simple-code-editor';
5
-import SqlEditor from './SqlEditor';
+import {SqlEditor} from './SqlEditor';
6
7
it('can parse the initial query', () => {
8
const types = {foo: ['bar', 'baz']};
0 commit comments