Skip to content

Instantly share code, notes, and snippets.

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

  • Save decpk/8463535ba2eb729ab1bffe40fecdd467 to your computer and use it in GitHub Desktop.

Select an option

Save decpk/8463535ba2eb729ab1bffe40fecdd467 to your computer and use it in GitHub Desktop.
const App = function () {
return (
<div>
<h4 className="mt-4 text-center">Course Library</h4>
<CardComponent
headerText="React.js"
courseComplexityType="Beginner"
courseDescription="A beginner friendly course of React.js Library"
/>
<CardComponent
headerText="JavaScript.js"
courseComplexityType="Intermediate"
courseDescription="Vanilla JavaScript course for professionals."
/>
</div>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment