diff --git a/app/components/Doctor.js b/app/components/Doctor.js index 152035f..f9a1d02 100644 --- a/app/components/Doctor.js +++ b/app/components/Doctor.js @@ -1,5 +1,5 @@ import React, { Component } from 'react' -import { Text, TouchableOpacity, View } from 'react-native' +import { ScrollView, Text, TouchableOpacity, View } from 'react-native' import Icon from 'react-native-vector-icons/FontAwesome'; import styles from './styles/doctor' @@ -13,7 +13,7 @@ class Doctor extends Component { let doctor = this.props.doctor; return ( - + @@ -32,7 +32,7 @@ class Doctor extends Component { {doctor.stories} {doctor.description} - + ) } }