1234567891011121314151617181920212223242526272829303132 |
- 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;
-
- }
- render(){
- return(
- <View>
- <BaseContainer width = {375} height = {209}>
- <ImageComp width = {375} height = {209}/>
- </BaseContainer>
- <BaseContainer width = {327} height = {255}>
- <TextComp />
- </BaseContainer>
- </View>
- )
- }
- }
- BlogFeed.Inputs = {
- }
|