import React from 'react'; import { Container, Inner, Item, Pane, Title, SubTitle, Image } from './styles/jumbotron'; export default function Jumbotron({ children, direction = 'row', ...restProps }) { return( {children} ) } Jumbotron.Container = function JumbotronContainer({ children, ...restProps }) { return{children}; } Jumbotron.Pane = function JumbotronPane({ children, ...restProps }) { return{children}; } Jumbotron.Title = function JumbotronTitle({ children, ...restProps }) { return{children}; } Jumbotron.SubTitle = function JumbotronSubTitle({ children, ...restProps }) { return{children}; } Jumbotron.Image = function JumbotronImage({ ...restProps }) { return; }