@4geit/ngx-app-component

1.3.1 • Public • Published

@4geit/ngx-app-component npm version


main component for angular app

Installation

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

Or use yarn using the following command:

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

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

@NgModule({
  // ...
  declarations: [
    // ...
    NgxAppComponent,
    // ...
  ],
  // ...
})
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 NgxAppComponent component in the routing file you want to use it. For instance app-routing.module.ts as follows:
import { NgxAppComponent } from '@4geit/ngx-app-component';

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

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

Readme

Keywords

none

Package Sidebar

Install

npm i @4geit/ngx-app-component

Weekly Downloads

0

Version

1.3.1

License

MIT

Last publish

Collaborators

  • geraldinestarke
  • fabianstarke
  • canercandan