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
| .one{ | |
| color: teal; | |
| } | |
| .two{ | |
| color: #D9B778; | |
| } | |
| .cell{ | |
| border-right: 1px dotted teal; |
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
| .form-wrapper{ | |
| margin-top: 50px; | |
| } | |
| .form-group{ | |
| padding-left: 10px; | |
| padding-right: 10px; | |
| } |
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
| <h3>Active Users</h3> | |
| <ul class="list-group"> | |
| <li class="list-group-item" | |
| *ngFor="let user of users; let i = index"> | |
| {{ user }} | <a href="#" (click)="onSetToInactive(i)">Set to Inactive</a> | |
| </li> | |
| </ul> |
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
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-12"> | |
| <h1>Bind it!</h1> | |
| <h4>App <span class="badge">4</span>: Components & Hooks Practice</h4> | |
| <ol> | |
| <li>Create three new components: GameControl, Odd and Even</li> | |
| <li>The GameControl Component should have buttons to start and stop the game</li> | |
| <li>When starting the game, an event (holding a incrementing number) should get emitted each second (ref = setInterval())</li> | |
| <li>The event should be listenable from outside the component</li> |
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
| #HTML | |
| '.text.html': | |
| 'HTML5 skeleton': | |
| 'prefix': 'doc' | |
| 'body': """ | |
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta name="author" content="Caleb"> |
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
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |