Re-export classes using ES6 export

This commit is contained in:
Kushal Pandya 2017-04-06 14:17:41 +05:30
parent 115d4a4106
commit 92b75704c2

View file

@ -1,5 +1,5 @@
require('./protected_tag_access_dropdown');
require('./protected_tag_create');
require('./protected_tag_dropdown');
require('./protected_tag_edit');
require('./protected_tag_edit_list');
export { default as ProtectedTagAccessDropdown } from './protected_tag_access_dropdown';
export { default as ProtectedTagCreate } from './protected_tag_create';
export { default as ProtectedTagDropdown } from './protected_tag_dropdown';
export { default as ProtectedTagEdit } from './protected_tag_edit';
export { default as ProtectedTagEditList } from './protected_tag_edit_list';