[skip ci] docs - database stub

This commit is contained in:
ehesp
2019-05-01 08:39:32 +01:00
parent 97bd4358f1
commit 3e0137c839
4 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
---
title: Quick Start
description: Get to grips with the basics of Realtime Database in React Native Firebase
---
# Realtime Database Quick Start
## Installation
Install this module with Yarn:
```bash
yarn add @react-native-firebase/database
```
> 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
Once installed, import the Cloud Functions package into your project:
```js
import database from '@react-native-firebase/database';
```
The package also provides access to the firebase instance:
```js
import { firebase } from '@react-native-firebase/database';
```
### Read and Write Data
### Realtime Data Sync
### FlatList and lists of data
### Enable Offline Capabilities