mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-05-08 12:00:41 +08:00
24 lines
543 B
JavaScript
24 lines
543 B
JavaScript
/**
|
|
* Copyright (c) 2016-present, Nicolas Gallagher.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @providesModule StatusBar
|
|
* @flow
|
|
*/
|
|
|
|
import { Component } from 'react';
|
|
|
|
export default class StatusBar extends Component {
|
|
static setBackgroundColor() {}
|
|
static setBarStyle() {}
|
|
static setHidden() {}
|
|
static setNetworkActivityIndicatorVisible() {}
|
|
static setTranslucent() {}
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|