I’m trying to import https://angular-ui.github.io/bootstrap/ from the npm package but I can’t figure out how to.
I did import uiBootstrap from 'angular-ui-bootstrap';
and did
export default angular.module(name, [
angularMeteor,
uiBootstrap,
home
])
It gives no errors but there’s no styling or anything happening.
What am I doing wrong