Skip to content

Commit 2839d4a

Browse files
committed
explicite export
1 parent 75eb3d8 commit 2839d4a

2 files changed

Lines changed: 2089 additions & 2565 deletions

File tree

src/index.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Platform } from 'react-native';
2+
3+
export { default as MathjaxFactory } from './mathjax';
4+
export const Constants = {};
5+
export type { MathViewProps } from './common';
6+
export { default as MathText } from './MathText';
7+
export * from './MathText';
8+
9+
export * from './android';
10+
11+
const defaaultExport = Platform.OS === 'ios' ? require('./index.ios') : require('./index.android');
12+
13+
export default defaaultExport.default;

0 commit comments

Comments
 (0)