BodyView.js 546 B

1234567891011121314151617181920212223242526272829303132333435
  1. import React from 'react'
  2. import { View, ViewStyle, StyleSheet, } from 'react-native'
  3. import c from '../../color/colors'
  4. import t from '../../translator/translator'
  5. import { MyText, } from '../../components/texts'
  6. type Props = {
  7. containerViewStyle: ViewStyle,
  8. }
  9. export default FunkTemplate = (props: Props) =>
  10. {
  11. return (
  12. <View style={ [styles.container, props.containerViewStyle] }>
  13. </View>
  14. )
  15. }
  16. FunkTemplate.defaultProps = {
  17. }
  18. const styles = StyleSheet.create({
  19. container: {
  20. flex: 1,
  21. },
  22. })