3
0

index.js 686 B

1234567891011121314151617181920212223242526272829303132
  1. import React from 'react';
  2. import Module from '../../lib/Module';
  3. import { View , StyleSheet , Text} from 'react-native';
  4. import Types from '../../lib/Types';
  5. import BaseContainer from '../BaseContainer/index';
  6. import ImageComp from '../Image/index';
  7. import TextComp from '../Text/index';
  8. export default class BlogFeed extends Module {
  9. constructor(props){
  10. super(props)
  11. this.isTemplate = true;
  12. }
  13. render(){
  14. return(
  15. <View>
  16. <BaseContainer width = {375} height = {209}>
  17. <ImageComp width = {375} height = {209}/>
  18. </BaseContainer>
  19. <BaseContainer width = {327} height = {255}>
  20. <TextComp />
  21. </BaseContainer>
  22. </View>
  23. )
  24. }
  25. }
  26. BlogFeed.Inputs = {
  27. }