0.0.3 • Published 3 years ago

ng-bootstrap-card v0.0.3

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

NgBootstrapCard

This library was generated with Angular CLI version 12.2.0.

Installation & Usage

You need to run 'npm i ng-bootstrap-card' to install the package.

Once installed, please import the module in your root module or any component specific module. Though make sure to export it while using in a component specific module.

import { NgBootstrapCardModule } from 'ng-bootstrap-card'

Current implementation is that you can provide any image file with link to the image location, card title, card body and card button or card link. Something like this:

public cardData = {
    imgSrc: '...some link',
    title: 'Some Title',
    body: 'Card body to be rendered on the card.',
    btnlink: 'Click Me' / link: 'Click Me'
}