> For the complete documentation index, see [llms.txt](https://docs.valtimo.nl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.valtimo.nl/customizing-valtimo/front-end-customization/custom-components/custom-case-management-tab.md).

# Custom case management tab

#### **`app.module.ts`**

```typescript
...
// import CASE_MANAGEMENT_TAB_TOKEN
import { CASE_MANAGEMENT_TAB_TOKEN } from '@valtimo/config';
...
// import your custom component from wherever you have defined it
import {CustomTabComponent} from 'component-path';
...

// add this to the providers array of the AppModule
...
     {
      provide: CASE_MANAGEMENT_TAB_TOKEN,
      useValue: {
        // this refers to a translation key in the translation json files
        translationKey: 'translations.customTabTitle',
        component: CustomTabComponent,
      },
      multi: true,
    },
...
export class AppModule {
    ...
}
```
