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