Created
January 28, 2021 08:19
-
-
Save decpk/8463535ba2eb729ab1bffe40fecdd467 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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