<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
{%set addr = 'seoul korea'%} {%set names = ['원','점','직선','거리']%}
<h1>{{userName}}</h1>
<h2>addr : {{addr}}</h2>
{%for name in names%}
<li>{{name}}</li>
{%endfor%}
</body>
</html>
개인적으로 ejs보단 나아보인다. 하지만 react보단 한참 불편한게 사실이다.
이정도만 알아보고 화면은 react로 그려주는게 낫다고 느꼈다