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