import React from "react"; | |
import "./MoviesStyles.css"; | |
function AllCardsWrapper({ children, ...restProps }) { | |
return ( | |
<div className="all-cards-wrapper" {...restProps}> | |
{children} | |
</div> | |
); | |
} | |
export default AllCardsWrapper; | |
import React from "react"; | |
import "./MoviesStyles.css"; | |
function AllCardsWrapper({ children, ...restProps }) { | |
return ( | |
<div className="all-cards-wrapper" {...restProps}> | |
{children} | |
</div> | |
); | |
} | |
export default AllCardsWrapper; | |