mirror of
https://github.com/hazemKrimi/diamond-rap-calculator.git
synced 2026-05-01 18:30:26 +00:00
22 lines
437 B
JavaScript
22 lines
437 B
JavaScript
import React from 'react';
|
|
import { StyleSheet } from 'react-native';
|
|
import { Appbar } from 'react-native-paper';
|
|
|
|
const Nav = () => {
|
|
return (
|
|
<Appbar style={styles.appBar}>
|
|
<Appbar.Content
|
|
title='Goldiama Rap Calculator'
|
|
color='white'
|
|
/>
|
|
</Appbar>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
appBar: {
|
|
height: 75
|
|
}
|
|
});
|
|
|
|
export default Nav; |