Fix Storybook compilation warning

Typescript import and export has to be explicit.
Related issue #700
Related PR #701
This commit is contained in:
Himanshu Mishra
2020-05-05 02:37:00 +09:00
parent 1d1589680d
commit 5363006759
+2 -1
View File
@@ -14,5 +14,6 @@
* limitations under the License.
*/
export { default, TableColumn } from './Table';
export { default } from './Table';
export type { TableColumn } from './Table';
export { default as SubvalueCell } from './SubvalueCell';