--- title: Quick Start description: Getting started with Notifications in React Native Firebase --- # Notifications Quick Start > This module has not yet been migrated as part of the on-going v6 work. ## Installation This module depends on the `@react-native-firebase/app` module. To get started and install `app`, visit the project's quick start guide. 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 Android & iOS. ## 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