YoeriVD / angular2-demos

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

angular2-demos

install ng2-bootstrap and bootstrap

npm install ng2-bootstrap bootstrap --save

open src/app/app.module.ts and add

import { AlertModule } from 'ng2-bootstrap/ng2-bootstrap';

@NgModule({
...
imports: [AlertModule.forRoot(), ... ],
... 
})

open angular-cli.json and insert a new entry into the styles array

"styles": [
    "styles.css",
    "../node_modules/bootstrap/dist/css/bootstrap.min.css"
],

About


Languages

Language:TypeScript 82.8%Language:HTML 9.3%Language:JavaScript 7.2%Language:CSS 0.7%