-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
44 lines (37 loc) · 1.04 KB
/
App.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import React from "react";
import {createSwitchNavigator, createAppContainer} from "react-navigation";
import contacts, {compareNames} from "./contacts";
import ContactListScreen from "./Screen/ContactListScreen";
import AddContactScreen from "./Screen/AddContactScreen";
const AppNavigator = createSwitchNavigator(
{
AddContact: AddContactScreen,
Contactlist: ContactListScreen,
},
{
initialRouteName: "Contactlist",
}
);
const AppContainer = createAppContainer(AppNavigator);
export default class App extends React.Component {
state = {
showContacts: false,
showForm: false,
contacts: contacts,
};
addContact = newContact => {
this.setState(prevState => ({
contacts: [...prevState.contacts, newContact]
}));
};
render() {
return (
<AppContainer
screenProps={{
contacts: this.state.contacts,
addContact: this.addContact,
}}
/>
);
}
}