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

14 lines
226 B
JavaScript
Raw Normal View History

2019-06-25 22:20:24 +02:00
// @flow
import variable from './../variables/platform';
export default (variables /*: * */ = variable) => {
const bodyTheme = {
flex: 1,
alignItems: 'center',
alignSelf: 'center',
};
return bodyTheme;
};