Rocket.Chat.ReactNative/app/views/AuthLoadingView.js

11 lines
213 B
JavaScript
Raw Normal View History

2019-03-12 16:23:06 +00:00
import React from 'react';
import StatusBar from '../containers/StatusBar';
2019-12-04 16:39:53 +00:00
import { withTheme } from '../theme';
2019-03-12 16:23:06 +00:00
2019-12-04 16:39:53 +00:00
export default React.memo(withTheme(({ theme }) => (
<>
2019-12-04 16:39:53 +00:00
<StatusBar theme={theme} />
</>
2019-12-04 16:39:53 +00:00
)));