index.ts 726 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. export {
  2. default as Text
  3. } from "./text";
  4. export {
  5. default as Button
  6. } from "./button";
  7. export {
  8. default as PageContainer
  9. } from "./pageContainer";
  10. /*
  11. export {
  12. default as Dialog
  13. } from "./dialog";
  14. export type {
  15. IDialogRef
  16. } from "./dialog/type";
  17. */
  18. export {
  19. default as Modal
  20. } from "./modal";
  21. export type {
  22. IModalRef
  23. } from "./modal/type";
  24. export {
  25. default as Loading
  26. } from "./loading";
  27. export {
  28. default as TextInput
  29. } from "./textInput";
  30. export {
  31. default as SelectBox
  32. } from "./selectBox";
  33. export {
  34. default as BottomSheet
  35. } from "./bottomSheet";
  36. export type {
  37. IBottomSheetRef
  38. } from "./bottomSheet/type";
  39. export {
  40. default as SelectSheet
  41. } from "./selectSheet";