Skip to content

Commit

Permalink
🛠 Refactor: Move to src/components/ModalView
Browse files Browse the repository at this point in the history
Summary: Move `src/ModalView.tsx` to `src/components/ModalView`.
  • Loading branch information
dominicstop committed Jan 6, 2023
1 parent 10f883d commit c6c72d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/ModalView.tsx → src/components/ModalView/ModalView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ import {
Platform,
} from 'react-native';

import * as Helpers from './functions/helpers';
import * as Helpers from '../../functions/helpers';

import { EventEmitter } from './functions/EventEmitter';
import { ModalEventKeys } from './constants/Enums';
import { ModalContext } from './context/ModalContext';
import { EventEmitter } from '../../functions/EventEmitter';
import { ModalEventKeys } from '../../constants/Enums';
import { ModalContext } from '../../context/ModalContext';

import { RNIModalView } from './native_components/RNIModalView';
import { RNIModalView } from '../../native_components/RNIModalView';

import { RNIModalViewModule } from './native_modules/RNIModalViewModule';
import { RNIModalViewModule } from '../../native_modules/RNIModalViewModule';

//
//
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './ModalView';
export * from './components/ModalView';

export * from './module/ModalViewModule';

Expand Down

0 comments on commit c6c72d6

Please sign in to comment.