Skip to content

Instantly share code, notes, and snippets.

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

  • Save decpk/01702390c2de5efd066aff09a9228530 to your computer and use it in GitHub Desktop.

Select an option

Save decpk/01702390c2de5efd066aff09a9228530 to your computer and use it in GitHub Desktop.
const CourseComplexity = function ({ courseComplexityType }) {
const studentTypeClass = ["badge", "badge-pill"];
if (courseComplexityType === "Beginner") studentTypeClass.push("badge-primary");
else if (courseComplexityType === "Intermediate")
studentTypeClass.push(" badge-warning");
return (
<span className={studentTypeClass.join(" ")}>{courseComplexityType}</span>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment