-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path条件渲染
51 lines (35 loc) · 765 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// const flag=false
// function App() {
// return (
// <div className="App">
// {flag&&<h1>Hello World</h1>}
// </div>)
// }
// export default App;
// const is_login=false
// function App() {
// return (
// <div className="App">
// {is_login?<h1>Hello World</h1>:<h2>Hello World2</h2>}
// </div>)
// }
// export default App;
//项目的根组件
//APP——>index.js->public->index.html
const count = 1
function getA() {
if (count > 10) {
return <div>hello</div>}
else if (count > 5)
{ return <div>world</div> }
else { return <div>hello world</div> }
}
function App() {
return (
<div className="App">
<h1>判断</h1>
{getA()}
</div>
);
}
export default App;