-
Notifications
You must be signed in to change notification settings - Fork 490
/
Copy pathApp.js
49 lines (37 loc) · 1.29 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
45
46
47
48
49
import React from "react";
import "./App.css";
// Class Based State Example
import ClassStateExample from "./Components/ClassStateExample/ClassStateExample";
// Counter using class
import CounterUsingClassState from "./Components/ClassStateExample/CounterUsingClassState";
// Life cycle with Class States
import UsingClassLifeCycleComponent from "./Components/ClassStateExample/UsingClassLifeCycleComponent";
// Counter using useState
import CounterUsingHooksUseState from "./Components/UseState/CounterUsingHooksUseState";
// useState callback example
import CounterIncrementDecrement from "./Components/UseState/CounterIncrementDecrement";
// useEffect
import UsingUseEffect from "./Components/UseEffect/UsingUseEffect";
// Context API with out hooks
import Component1 from "./Components/UseContext/Component1";
// useContext
import UsingUseContext from "./Components/UseContext/UsingUseContext";
// First creat context
export const MyContext = React.createContext();
function App() {
return (
<div className="App">
<UsingClassLifeCycleComponent />
</div>
);
}
// function App() {
// return (
// <div className="App">
// <MyContext.Provider value={"The data you want to pass"}>
// <Component1 />
// </MyContext.Provider>
// </div>
// );
// }
export default App;