application-amicale/native-base-theme/components/Tab.js

11 lines
123 B
JavaScript
Raw Normal View History

2019-06-25 22:20:24 +02:00
// @flow
2020-01-28 20:07:21 +01:00
export default () => {
2019-06-25 22:20:24 +02:00
const tabTheme = {
flex: 1,
2020-01-28 20:07:21 +01:00
backgroundColor: '#FFF'
2019-06-25 22:20:24 +02:00
};
return tabTheme;
};