Transcript - React Native

In React Native, you can use Text to display written text. Make sure to wrap the Text widget in a ScrollView to enable scrolling.

<ScrollView>
    <Text>
        Appt transcript
    </Text>
</ScrollView>