Reputation: 3361
We are trying to make a decision on a CSS framework.
We found https://wrapbootstrap.com/themes/admin and are wondering if there is a way to make these css themes work with Angular2?
Upvotes: 0
Views: 398
Reputation: 86730
I don't think there is any problem if you are going to use any CSS theme/framework with angular2.even i have used same ADMIN LTE dashboard for my project and code is running smoothly, but yes the problem may arise at the time of initialization of some plugin which use JQuery. so be alert from those type of code.
if you are using Admin theme you can initialize your JQuery code in the ngOnInit
life cycle hook of angular2.
also there are verity of css themes available those are easly compatible with angular2 like
Upvotes: 1
Reputation: 24462
These css themes should work with angular 2 like everything else. Just remember they use jQuery so it won't be very comfortable nor effective mixing all together.
Upvotes: 0