-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
30 lines (26 loc) · 956 Bytes
/
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
import { useState } from "react"; // Import useState hook from React
import { MyComponent } from "./components/MyComponent"; // Import the MyComponent component
import { SecondComponent } from "./components/SecondComponent";
function App() {
const [show, setShow] = useState(true); // Initialize state 'show' to true and create a function to update it
const [show2, setShow2] = useState(false);
return (
<div>
{/* Button to remove the component by setting 'show' to false */}
<button onClick={() => setShow(false)}>Remove Component</button>
<button onClick={() => setShow2(show2 => !show2)}>{show2?"Remove Timer" : "Start Timer"} Component</button>
<br />
<br />
<br />
<br />
{/* Conditionally render MyComponent based on the value of 'show' */}
{show && (
<MyComponent />
)}
{show2 && (
<SecondComponent />
)}
</div>
);
}
export default App;