Experiencing difficulties with CSS/Bootstrap integration when displayed in an angular2 component.
When attempting to display the CSS and HTML content in the Index.html file (with proper CSS and JS references), everything functions correctly. However, once the same HTML content with CSS classes is rendered within the angular2 component, it fails to work as expected.
Despite trying various solutions found online, including adding encapsulation: ViewEncapsulation.None for the component, the CSS functionality still does not function properly within angular 2.
The order of JS reference files is:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
The issue has been replicated and can be viewed on Github url.
If anyone could offer assistance with this problem, it would be greatly appreciated.