mirror of
https://github.com/hazemKrimi/diamond-rap-calculator.git
synced 2026-05-01 18:30:26 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import React from 'react';
|
||||
import { DefaultTheme, Provider as PaperProvider } from 'react-native-paper';
|
||||
import { StatusBar } from 'expo-status-bar';
|
||||
import Nav from './components/Nav';
|
||||
import Home from './screens/Home';
|
||||
|
||||
const theme = {
|
||||
...DefaultTheme,
|
||||
colors: {
|
||||
...DefaultTheme.colors,
|
||||
primary: '#060630',
|
||||
background: '#FFFFFF'
|
||||
},
|
||||
};
|
||||
|
||||
export default App = () => {
|
||||
return (
|
||||
<>
|
||||
<PaperProvider theme={theme}>
|
||||
<StatusBar style='light' />
|
||||
<Nav />
|
||||
<Home />
|
||||
</PaperProvider>
|
||||
</>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user