React学习案例二十五
Posted hhh江月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React学习案例二十五相关的知识,希望对你有一定的参考价值。
React学习案例二十五
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>React 实例</title>
</head>
<body>
<div id="example"></div>
<script type="text/babel">
function UserGreeting(props)
return <h1>欢迎回来!</h1>;
function GuestGreeting(props)
return <h1>请先注册。</h1>;
function Greeting(props)
const isLoggedIn = props.isLoggedIn;
if (isLoggedIn)
return <UserGreeting />;
return <GuestGreeting />;
ReactDOM.render(
// Try changing to isLoggedIn=true:
<Greeting isLoggedIn=false />,
document.getElementById('example')
function UserGreeting(props)
return <h1>欢迎回来!</h1>;
function GuestGreeting(props)
return <h1>请先注册。</h1>;
function Greeting(props)
const isLoggedIn = props.isLoggedIn;
if (isLoggedIn)
return <UserGreeting />;
return <GuestGreeting />;
ReactDOM.render(
// Try changing to isLoggedIn=true:
<Greeting isLoggedIn=false />,
document.getElementById('example')
function UserGreeting(props)
return <h1>欢迎回来!</h1>;
function GuestGreeting(props)
return <h1>请先注册。</h1>;
function Greeting(props)
const isLoggedIn = props.isLoggedIn;
if (isLoggedIn)
return <UserGreeting />;
return <GuestGreeting />;
ReactDOM.render(
// Try changing to isLoggedIn=true:
<Greeting isLoggedIn=false />,
document.getElementById('example')
以上是关于React学习案例二十五的主要内容,如果未能解决你的问题,请参考以下文章