Body.js 147 B

1234567891011
  1. // @flow
  2. export default () => {
  3. const bodyTheme = {
  4. flex: 1,
  5. alignItems: 'center',
  6. alignSelf: 'center'
  7. };
  8. return bodyTheme;
  9. };