import * as React from "react" import { View } from "react-native" import { PRESETS } from "./form-row.presets" import { FormRowProps } from "./form-row.props" import { mergeAll, flatten } from "ramda" /** * A horizontal container component used to hold a row of a form. */ export function FormRow(props: FormRowProps) { const viewStyle = mergeAll(flatten([PRESETS[props.preset], props.style])) return {props.children} }