# presentation/views/information.view.ts

> 15 lines of code and 2 definitions.

Tree: Site tree
Language: typescript
Layer: product
Canonical: https://banes-lab.com/anatomy/tree#file-presentation-views-information-view-ts
Source text: https://banes-lab.com/assets/sources/source.507921b67cd041e65488cf772d20b2ce37ac142515f9edb003d0886be1413ab7.generated.txt

## Definitions

- `renderInformation` (lexical_declaration, line 7)
- `PAGE` (lexical_declaration, line 11, exported)

## Source

```typescript
import { INFORMATION_DESCRIPTION, INFORMATION_TITLE } from "#configuration/strings/page.strings";
import { INFORMATION_META, INFORMATION_SECTIONS } from "#configuration/strings/information.strings";
import { INFORMATION_PAGE } from "#core/ids/page.ids";
import type { PageDefinition } from "#types/page.types";
import { renderDocument } from "#presentation/renderers/document.renderer";

const renderInformation = function renderInformation(): Element {
    return renderDocument(INFORMATION_META, INFORMATION_SECTIONS);
};

export const PAGE: PageDefinition = {
    content: { kind: "document", meta: INFORMATION_META, sections: INFORMATION_SECTIONS },
    description: INFORMATION_DESCRIPTION,
    id: INFORMATION_PAGE,
    render: renderInformation,
    title: INFORMATION_TITLE,
};
```
