@4geit/ngx-marketplace-product-detail-component

1.2.1 • Public • Published

@4geit/ngx-marketplace-product-detail-component npm version


product detail section for marketplace app

Installation

  1. A recommended way to install @4geit/ngx-marketplace-product-detail-component is through npm package manager using the following command:
npm i @4geit/ngx-marketplace-product-detail-component --save

Or use yarn using the following command:

yarn add @4geit/ngx-marketplace-product-detail-component
  1. You need to import the NgxMarketplaceProductDetailComponent component within the module you want it to be. For instance app.module.ts as follows:
import { NgxMarketplaceProductDetailComponent } from '@4geit/ngx-marketplace-product-detail-component';

And you also need to add the NgxMarketplaceProductDetailComponent component with the @NgModule decorator as part of the declarations list.

@NgModule({
  // ...
  declarations: [
    // ...
    NgxMarketplaceProductDetailComponent,
    // ...
  ],
  // ...
})
export class AppModule { }
  1. You can also attach the component to a route in your routing setup. To do so, you need to import the NgxMarketplaceProductDetailComponent component in the routing file you want to use it. For instance app-routing.module.ts as follows:
import { NgxMarketplaceProductDetailComponent } from '@4geit/ngx-marketplace-product-detail-component';

And you also need to add the NgxMarketplaceProductDetailComponent component within the list of routes as follows:

const routes: Routes = [
  // ...
  { path: '**', component: NgxMarketplaceProductDetailComponent }
  // ...
];

Readme

Keywords

none

Package Sidebar

Install

npm i @4geit/ngx-marketplace-product-detail-component

Weekly Downloads

2

Version

1.2.1

License

MIT

Last publish

Collaborators

  • geraldinestarke
  • fabianstarke
  • canercandan