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-09-24 20:26:56 +00:00
|
|
|
<>
|
2019-12-04 16:39:53 +00:00
|
|
|
<StatusBar theme={theme} />
|
2019-09-24 20:26:56 +00:00
|
|
|
</>
|
2019-12-04 16:39:53 +00:00
|
|
|
)));
|