123456789101112131415161718192021222324252627282930313233 |
- import React from 'react';
- import Module from '../../lib/Module';
- import { View , StyleSheet , Text} from 'react-native';
- import Types from '../../lib/Types';
- import BaseContainer from '../BaseContainer/index';
- import ImageComp from '../Image/index';
- import TextComp from '../Text/index';
- export default class BlogFeed extends Module {
- constructor(props){
- super(props)
- this.isTemplate = true;
- console.log("@@@@@@here i am ")
- console.log(this.props.node)
- }
- render(){
- return(
- <View>
- <BaseContainer width = {375} height = {209}>
- <ImageComp width = {375} height = {209}/>
- </BaseContainer>
- <BaseContainer width = {327} height = {255}>
- <TextComp />
- </BaseContainer>
- </View>
- )
- }
- }
- BlogFeed.Inputs = {
- }
|