When I generate a component with the angular 2 cli:
ng g component "test" it creates a folder:
test
|__Shared
| |__Index.ts
|__test.component.html
|__test.component.css
|__etc...
What is the Shared folder? I mean what am I assumed to share between a html and css file? Or between a test.component.ts and a test.component.css ?
That makes no sense to me to create for each component a shared folder.
Can anyone explain that to me please?!