Last active
December 2, 2022 14:44
-
-
Save cyrilletuzi/e6d446c8b1188bd59dd5c6d0f8e31d66 to your computer and use it in GitHub Desktop.
This file contains 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
app/ | |
|- app.module.ts | |
|- app-routing.module.ts | |
|- core/ | |
|- auth/ | |
|- auth.module.ts (optional since Angular 6) | |
|- auth.service.ts | |
|- index.ts | |
|- othermoduleofglobalservice/ | |
|- ui/ | |
|- carousel/ | |
|- carousel.module.ts | |
|- index.ts | |
|- carousel/ | |
|- carousel.component.ts | |
|- carousel.component.css | |
|- othermoduleofreusablecomponents/ | |
|- heroes/ | |
|- heroes.module.ts | |
|- heroes-routing.module.ts | |
|- shared/ | |
|- heroes.service.ts | |
|- hero.ts | |
|- pages/ | |
|- heroes/ | |
|- heroes.component.ts | |
|- heroes.component.css | |
|- hero/ | |
|- hero.component.ts | |
|- hero.component.css | |
|- components/ | |
|- heroes-list/ | |
|- heroes-list.component.ts | |
|- heroes-list.component.css | |
|- hero-details/ | |
|- hero-details.component.ts | |
|- hero-details.component.css | |
|- othermoduleofpages/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can you please link the repo for this arch. I am really interested in looking at proper code for this one. Thanks !!