UNPKG

react-native-bars

Version:

Components to control your app status and navigation bars.

15 lines (14 loc) 518 B
import * as React from "react"; import { NavigationBar } from "./NavigationBar"; import { StatusBar } from "./StatusBar"; export class SystemBars extends React.Component { render() { return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(StatusBar, { animated: this.props.animated, barStyle: this.props.barStyle }), /*#__PURE__*/React.createElement(NavigationBar, { barStyle: this.props.barStyle })); } } //# sourceMappingURL=SystemBars.js.map