-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
29 lines (25 loc) · 699 Bytes
/
App.js
File metadata and controls
29 lines (25 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import {NavigationContainer} from '@react-navigation/native';
import React from 'react';
import Router from './src/router';
import {Provider} from 'react-redux';
import store from './src/context/store';
const App = () => {
return (
<Provider store={store}>
<NavigationContainer>
<Router />
</NavigationContainer>
</Provider>
);
};
export default App;
// Copyright - Kelompok 1 Project 3 - RCTN-KS05 Hactiv8
// =======================
// Nama: Muhammad Irfan Zidni
// Kode Peserta : RCTN-KS05-002
// =======================
// Nama: Muhaemin Iskandar
// Kode Peserta : RCTN-KS05-001
// =======================
// Nama: Vika Alpiana
// Kode Peserta : RCTN-KS05-004