# @gettrx/core-components-angular

Gettrx core components Angular specific UI components on top of [@gettrx/core-components](https://www.npmjs.com/package/@gettrx/core-components) components.

## How to use

The components are exported as an angular module.

```tsx
// my-app.module.ts
import { GettrxModule } from "@gettrx/core-components-angular";

@NgModule({
  imports: [GettrxModule],
})
export class MyAppModule {}

// my-app.component.html
<gtr-button>Trigger the button</gtr-button>;
```

## Related

- [Gettrx Core Components](https://www.npmjs.com/package/@gettrx/core-components)
