# presentation/records/grammar.record.ts

> 18 lines of code and 0 definitions.

Tree: Site tree
Language: typescript
Layer: domain
Canonical: https://banes-lab.com/anatomy/tree#file-presentation-records-grammar-record-ts
Source text: https://banes-lab.com/assets/sources/source.d56a36e466434e4d15df7710d459f69be653466b2befbabd6f1d016bd9f354ba.generated.txt

## Source

```typescript
import { GRAMMAR_DESCRIPTION, GRAMMAR_SHARE, GRAMMAR_TITLE } from "#configuration/strings/page.strings";
import { GRAMMAR_ACCENT } from "#configuration/constants/page.constants";
import { GRAMMAR_EMBLEM } from "#assets/image.assets";
import { GRAMMAR_ICON } from "#configuration/icons/page.icons";
import { GRAMMAR_PAGE } from "#core/ids/page.ids";
import { registerPage } from "#domain/registries/page.registry";

registerPage({
    accent: GRAMMAR_ACCENT,
    description: GRAMMAR_DESCRIPTION,
    icon: GRAMMAR_ICON,
    id: GRAMMAR_PAGE,
    listed: true,
    load: async () => (await import("#presentation/views/grammar.view")).PAGE,
    mark: GRAMMAR_EMBLEM,
    order: 30,
    share: GRAMMAR_SHARE,
    title: GRAMMAR_TITLE,
});
```
