react-native-ecommerce-components
Version:
A compilation of components to optimize the development of your ecommerce
18 lines (17 loc) • 447 B
TypeScript
import React from 'react';
interface NewClientProps {
onSubmit: (data: Record<string, string>) => void;
fields: string[];
title: string;
subTitle?: string;
styles?: {
container?: object;
input?: object;
button?: object;
buttonText?: object;
title?: object;
subTitle?: object;
};
}
declare const NewClient: React.FC<NewClientProps>;
export default NewClient;