Files
react-native-firebase/docs/dynamic-links/quick-start.md
2019-09-16 14:33:10 +01:00

36 lines
935 B
Markdown

---
title: Quick Start
description: Getting started with Dynamic Links in React Native Firebase
---
# Dynamic Links Quick Start
## Installation
This module depends on the `@react-native-firebase/app` module. To get started and install `app`,
visit the projects <Anchor version={false} group={false} href="/quick-start">quick start</Anchor> guide.
Install this module with Yarn:
```bash
yarn add @react-native-firebase/dynamic-links
```
> 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 Dynamic Links package into your project:
```js
import dynamicLinks from '@react-native-firebase/dynamic-links';
```
The package also provides access to the firebase instance:
```js
import { firebase } from '@react-native-firebase/dynamic-links';
```
### TODO