react-native-surveys
Version:
Build your own forms, surveys and polls for your React Native apps.
12 lines (9 loc) • 380 B
JavaScript
import React, { memo } from "react";
import { View } from "react-native";
const FilesUpload = () => {
console.warn(
"NativeForms.com - File Uploader won't work here. You need to add NativeFormsWebView component. To set it up please check out docs: https://github.com/venits/native-forms"
);
return React.createElement(View, null);
};
export default memo(FilesUpload);