import React,{Component} from 'react'
import {StyleSheet,Text,View,ProgressBarAndroid} from 'react-native'
import {responsiveWidth,responsiveHeight} from 'react-native-responsive-dimensions'
import NotificationTextSimple from "./NotificationTextSimple";
export default class NotificationBuilder extends Component{
constructor(props){
super(props)
}
render() {
if(this.props.type===0){
return ()
}
return (
{this.props.title}
{this.props.text}
)
}
}