personnel_css.js 370 B

123456789101112131415161718
  1. import React from 'react';
  2. import {Dimensions, PixelRatio, StyleSheet} from 'react-native';
  3. const personnel_css = StyleSheet.create({
  4. container: {
  5. backgroundColor: 'white',
  6. flex: 1,
  7. },
  8. footer: {
  9. flexDirection: 'row',
  10. height: 24,
  11. justifyContent: 'center',
  12. alignItems: 'center',
  13. marginBottom: 10,
  14. },
  15. });
  16. export default personnel_css;