We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de15740 commit cb11682Copy full SHA for cb11682
src/index.tsx
@@ -1,3 +1,6 @@
1
import Tooltip from './Tooltip';
2
+import Popup from './Popup';
3
+
4
+export { Popup };
5
6
export default Tooltip;
tests/popup.test.js
@@ -0,0 +1,8 @@
+import { Popup } from '../src';
+describe('Popup', () => {
+ // Used in antd for C2D2C
+ it('should export', () => {
+ expect(Popup).toBeTruthy();
7
+ });
8
+});
0 commit comments