The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

17 satır
282 B

  1. export const MODAL_OPEN = 'MODAL_OPEN';
  2. export const MODAL_CLOSE = 'MODAL_CLOSE';
  3. export function openModal(type, props) {
  4. return {
  5. type: MODAL_OPEN,
  6. modalType: type,
  7. modalProps: props
  8. };
  9. };
  10. export function closeModal() {
  11. return {
  12. type: MODAL_CLOSE
  13. };
  14. };