12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
// @flow
|
|
|
|
import variable from "./../variables/platform";
|
|
|
|
export default (variables /*: * */ = variable) => {
|
|
const tabTheme = {
|
|
flex: 1,
|
|
backgroundColor: "#FFF"
|
|
};
|
|
|
|
return tabTheme;
|
|
};
|