17 lines
353 B
JavaScript
17 lines
353 B
JavaScript
import React from 'react'
|
|
import {
|
|
View,
|
|
Text} from 'react-native'
|
|
import styles from '../../styles'
|
|
|
|
export default function DefaultHeader(props) {
|
|
return (
|
|
<View style={styles.header}>
|
|
<View style={styles.accentCircle} />
|
|
<Text testID='pageTitle' style={styles.headerText}>
|
|
{props.title}
|
|
</Text>
|
|
</View >
|
|
)
|
|
}
|