I want to use bootstrap in my Angular project.
For this purpose I installed Bootstrap with this command:
npm install bootstrap
and I added this reference:
"styles": [
"./node_modules/bootstrap/dist/css/bootstrap.min.css"
],
in styles property in angular.json file.
After that I try to run my application, but on the component I don't see that Bootstrap is applied on template:
<div>
<!-- Actual search box -->
<div class="form-group has-search">
<span class="fa fa-search form-control-feedback"></span>
<input type="text" class="form-control" placeholder="Search">
</div>
</div>
Any idea why is Bootstrap not applied on template?