選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.js 605B

12345678910111213
  1. // @flow
  2. export { default as BottomSheet } from './BottomSheet';
  3. export { default as ConfirmDialog } from './ConfirmDialog';
  4. export { default as CustomDialog } from './CustomDialog';
  5. export { default as DialogContainer } from './DialogContainer';
  6. export { default as AlertDialog } from './AlertDialog';
  7. export { default as InputDialog } from './InputDialog';
  8. export { default as CustomSubmitDialog } from './CustomSubmitDialog';
  9. // NOTE: Some dialogs reuse the style of these base classes for consistency
  10. // and as we're in a /native namespace, it's safe to export the styles.
  11. export * from './styles';