react-saasify
Version:
React components for Saasify web clients.
21 lines (19 loc) • 452 B
JavaScript
import React from 'react'
import { ServiceInputWrapperWithLabel } from './ServiceInputWrapperWithLabel'
import { Input } from 'lib/antd'
export const ServiceInput = ({
default: defaultValue,
type,
onChange,
propKey,
...props
}) => (
<ServiceInputWrapperWithLabel propKey={propKey} {...props}>
<Input
type={type}
value={defaultValue}
onChange={onChange}
name={propKey}
/>
</ServiceInputWrapperWithLabel>
)