mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 01:22:07 +01:00
cc23aa6be7
- Closes #10166
12 lines
558 B
TypeScript
12 lines
558 B
TypeScript
/**
|
|
* Entry point for the wagtail package.
|
|
* Re-exports components and other modules via a cleaner API.
|
|
*/
|
|
|
|
export { default as Button } from './components/Button/Button';
|
|
export { default as Icon } from './components/Icon/Icon';
|
|
export { default as LoadingSpinner } from './components/LoadingSpinner/LoadingSpinner';
|
|
export { default as Portal } from './components/Portal/Portal';
|
|
export { default as PublicationStatus } from './components/PublicationStatus/PublicationStatus';
|
|
export { default as Transition } from './components/Transition/Transition';
|