We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d72227 commit 141da11Copy full SHA for 141da11
3 files changed
example/src/App.tsx
@@ -8,10 +8,11 @@ import {
8
Image,
9
View,
10
} from 'react-native';
11
-import VariableTextInputView, {
+import {
12
IATTextViewBase,
13
IInserTextAttachmentItem,
14
ITextType,
15
+ VariableTextInputView,
16
} from 'react-native-variable-text-input';
17
export const App = () => {
18
const inPutRef = React.createRef<IATTextViewBase>();
src/index.tsx src/VariableTextInputView.tsxsrc/index.tsx renamed to src/VariableTextInputView.tsx
@@ -227,4 +227,4 @@ const VariableTextInputView = forwardRef(
227
const RNTVariableTextInputView = requireNativeComponent<IProps>(
228
'VariableTextInputView'
229
);
230
-export default VariableTextInputView;
+export { VariableTextInputView };
src/index.ts
@@ -0,0 +1 @@
1
+export * from './VariableTextInputView';
0 commit comments