| import React from "react"; | |
| import "./JumbotronStyles.css"; | |
| function JumboImageWrapper({ children, ...restProps }) { | |
| return ( | |
| <div className="jumbo-imagewrapper" {...restProps}> | |
| {children} | |
| </div> | |
| ); | |
| } | |
| export default JumboImageWrapper; | |
| import React from "react"; | |
| import "./JumbotronStyles.css"; | |
| function JumboImageWrapper({ children, ...restProps }) { | |
| return ( | |
| <div className="jumbo-imagewrapper" {...restProps}> | |
| {children} | |
| </div> | |
| ); | |
| } | |
| export default JumboImageWrapper; | |