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