Files
react-native-firebase/docs/notifications/quick-start.md
2019-06-23 21:31:11 +01:00

35 lines
825 B
Markdown

---
title: Quick Start
description: Get to grips with the basics of Notifications in React Native Firebase
---
# Notifications Quick Start
> This module has not yet been migrated as part of the on-going v6 work.
## Installation
Install this module with Yarn:
```bash
yarn add @react-native-firebase/notifications
```
> Integrating manually and not via React Native auto-linking? Check the setup instructions for <Anchor version group href="/android">Android</Anchor> & <Anchor version group href="/ios">iOS</Anchor>.
## Module usage
Import the Performance Monitoring package into your project:
```js
import notifications from '@react-native-firebase/notifications';
```
The package also provides access to the firebase instance:
```js
import { firebase } from '@react-native-firebase/notifications';
```
### TODO