import * as React from "react"; import { View, Text } from "react-native"; export interface DynamicDivProps { children?: any; attributes: any; actionAttributes: any; BlockWrapperProps: any; builderPath: any; builderParentId: any; BlocksWrapperProps: any; contentWrapperProps: any; builderModel: any; ref: any; } function DynamicDiv(props: DynamicDivProps) { return {props.children}; } export default DynamicDiv;