React. JSX
import logo from './logo.svg';
let name = '국수집';
function fnc(){
return '국수집'
}
...
return(
<h1>{name}</h1>
<h1>{fnc()}</h1>logo
<h1>{logo}</h1>
);
...
return(
{
1 === 3
? console.log('참')
: console.log('거짓')
}
);
...
return(
{
arr.map(function(obj, i){
return(
<div>{i}<div/>
)
})
}
);
...
return(
<input onChange={ (e)=>{e.target.value} }
);