UNPKG

native-spark

Version:

A React Native component for Spark UI

9 lines (8 loc) 274 B
import { TextInput } from 'react-native'; import React from 'react'; const SparkInput = ({ placeholder, style, effectConfig, children }) => { return (<TextInput placeholder={placeholder} style={style}> {children} </TextInput>); }; export default SparkInput;