import React from 'react';
import { Container, Base, Error, Title, Text, TextSmall, Link, Input, Submit } from '../form/styles/form';
export default function Form({ children, ...restProps }) {
return {children};
}
Form.Base = function FormBase({ children, ...restProps}) {
return {children};
};
Form.Error = function FormError({ children, ...restProps}) {
return {children};
};
Form.Title = function FormTitle({ children, ...restProps}) {
return
{children};
};
Form.Text = function FormText({ children, ...restProps}) {
return {children};
};
Form.TextSmall = function FormTextSmall({ children, ...restProps}) {
return {children};
};
Form.Link = function FormLink({ children, ...restProps}) {
return {children};
};
Form.Input = function FormInput({ children, ...restProps}) {
return {children};
};
Form.Submit = function FormSubmit({ children, ...restProps}) {
return {children};
};