> For the complete documentation index, see [llms.txt](https://ngxf.gitbook.io/platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ngxf.gitbook.io/platform/api/ngxfmodule.md).

# NgxfModule

## Simple Example

In `COMPONENT.module.ts`, import the `NgxfModule`:

```typescript
import { NgModule } from '@angular/core';
import { NgxfModule } from '@ngxf/platform';
​
@NgModule({
  imports: [
    NgxfModule
  ]
})
export class ComponentModule {}
```
