import React from 'react'; import { Container, Input, Button, Text, Break } from './styles/opt-form'; export default function OptForm({ children, ...restProps }) { return {children}; } OptForm.Input = function OptFormInput({ ...restProps }) { return ; }; OptForm.Button = function OptFormButton({ children, ...restProps }) { return ( ); }; OptForm.Text = function OptFormText({ children, ...restProps }) { return {children}; }; OptForm.Break = function OptFormBreak({ ...restProps }) { return ; };