Skip to content

Instantly share code, notes, and snippets.

@decpk
Created January 28, 2021 08:17
Show Gist options
  • Select an option

  • Save decpk/6d107f88efb09a7576ac14edad11c5fc to your computer and use it in GitHub Desktop.

Select an option

Save decpk/6d107f88efb09a7576ac14edad11c5fc to your computer and use it in GitHub Desktop.
const CourseCardBody = function ({ courseDescription, children }) {
return (
<div className="card-body">
<p className="card-text">{courseDescription}</p>
{ children }
</div>
);
};
export default CourseCardBody;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment