class Detail extends React.Component {
constructor(props){
super(props);
this.state ={
search:false
};
}
SearchandleClick = () => {
this.setState({
search: !this.state.search
});
};
render (){
return (
<div className="One">
<div className="Nav">
<div className="Nav_topwrap">
{this.state.search && <div className="tc">개발 웹개발자 서버 개발자</div>}
논리 연산자를 이용한 조건으로 && expression
조건이 true일 경우에는 && 이후에 위치한 expression을 반환하고, false일 경우 무시
render() {
const isLoggedIn = this.state.isLoggedIn;
return (
<div>
The user is <b>{isLoggedIn ? 'currently' : 'not'}</b> logged in.
</div>
);
}