import React from 'react';
import { Container, Row, Column, Link, Title, Text, Break } from '../footer/styles/footer';
export default function Footer({ children, ...restProps }) {
return {children};
}
Footer.Row = function FooterRow({ children, ...restProps }) {
return {children}
;
};
Footer.Column = function FooterColumn({ children, ...restProps }) {
return {children};
};
Footer.Link = function FooterLink({ children, ...restProps }) {
return {children};
};
Footer.Title = function FooterTitle({ children, ...restProps }) {
return
{children};
};
Footer.Text = function FooterText({ children, ...restProps }) {
return {children};
};
Footer.Break = function FooterBreak({ children, ...restProps }) {
return {children};
};