Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eneajaho/price-box-ng

Price Box Component built with Angular 8
https://github.com/eneajaho/price-box-ng

angular8 css-animations css-grid ui-components

Last synced: 3 months ago
JSON representation

Price Box Component built with Angular 8

Awesome Lists containing this project

README

        

# Price Box Component NG - [Live Demo](https://price-box-ng.netlify.com/)

Pricing Boxes built using Angular 8 and CSS Grid. - Free To Use

![Screenshot](https://raw.githubusercontent.com/eneajaho/price-box-ng/master/screenshot.png)

# Data Source

```javascript
pricingBoxes = [
{
name: 'Free',
price: 0,
features: [...]
},
{
name: 'Pro',
price: 59,
features: [...]
},
{
name: 'Business',
price: 99,
features: [...]
}
];
```

```javascript
export class PriceTableComponent {
@Input() pricingBox: {
name: string,
price: number,
features: string[]
};
}
```

## Angular Stuff
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.1.3.

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.