application-amicale/native-base-theme/components/Tab.js
2020-01-28 20:07:21 +01:00

10 lines
123 B
JavaScript

// @flow
export default () => {
const tabTheme = {
flex: 1,
backgroundColor: '#FFF'
};
return tabTheme;
};