UNPKG

react-native-surveys

Version:

Build your own forms, surveys and polls for your React Native apps.

26 lines (23 loc) 507 B
import React, { memo } from "react"; import { View } from "react-native"; import QuestionHeader from "../components/QuestionHeader"; const Description = ({ block, form, currentPageIndex, blockIndex, allBlocks }) => { return React.createElement( View, null, React.createElement(QuestionHeader, { form: form, block: block, currentPageIndex: currentPageIndex, blockIndex: blockIndex, allBlocks: allBlocks }) ); }; export default memo(Description);