/* eslint-disable react/style-prop-object */
import * as React from 'react';
import { View } from 'react-native';
import { StatusBar } from 'expo-status-bar';
import { Appbar } from 'react-native-paper';
import { goBack } from '../navigation/RootNavigation';
export default function Header({ title, noBack }) {
return (
<>
{!noBack && }
{!noBack && (
}
/>
)}
>
);
}