mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-03 06:40:28 +00:00
27 lines
692 B
JavaScript
27 lines
692 B
JavaScript
/**
|
|
* Entry point for the wagtail package.
|
|
* Re-exports components and other modules via a cleaner API.
|
|
*/
|
|
|
|
import Button from './components/Button/Button';
|
|
import Icon from './components/Icon/Icon';
|
|
import PublicationStatus from './components/PublicationStatus/PublicationStatus';
|
|
import LoadingSpinner from './components/LoadingSpinner/LoadingSpinner';
|
|
import Transition from './components/Transition/Transition';
|
|
import Explorer, {
|
|
ExplorerToggle,
|
|
initExplorer,
|
|
} from './components/Explorer';
|
|
import draftail from './components/Draftail';
|
|
|
|
export {
|
|
Button,
|
|
Icon,
|
|
PublicationStatus,
|
|
LoadingSpinner,
|
|
Transition,
|
|
Explorer,
|
|
ExplorerToggle,
|
|
initExplorer,
|
|
draftail,
|
|
};
|