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

11 lines
147 B
JavaScript

// @flow
export default () => {
const bodyTheme = {
flex: 1,
alignItems: 'center',
alignSelf: 'center'
};
return bodyTheme;
};