We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75eb3d8 commit 2839d4aCopy full SHA for 2839d4a
2 files changed
src/index.ts
@@ -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