After this lesson you will be able to:
- explain what a component library is and what makes it different from a style library,
- add and configure a component library,
- use and set up a component of
antdlibrary
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Semantic HTML</title> | |
| <meta charset="UTF-8" /> | |
| </head> | |
| <body> | |
| <nav> | |
| <a href="">Home</a> |
Feel free to use this presentation as a reference.
| @echo off | |
| set /p git_command="Type your command: " | |
| for /d %%i in (%cd%\*) do ( | |
| echo ************************************************************************* | |
| echo "%%i" | |
| cd "%%i" | |
| @echo off | |
| for /d %%i in (%cd%\*) do ( | |
| echo ************************************************************************* | |
| echo "%%i" | |
| cd "%%i" | |
| echo ----------------------------------------- | |
| echo fetch --all -v |
| // ============================================================ | |
| // Definition of an object / dictionary | |
| // ============================================================ | |
| const fruits = { | |
| color: 'red', | |
| length: 3 | |
| } | |
| // ============================================================ |