We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c95e5f2 commit db23881Copy full SHA for db23881
_posts/React/2023-03-27-01 리액트 소개.md
@@ -7,7 +7,8 @@ author: Young
7
comments: True
8
---
9
10
-{%raw%}
+{% raw %}
11
+
12
본 내용은 코딩애플 강의를 기반으로 정리하였습니다.
13
14
### 1. 리액트 프로젝트 만들기
@@ -141,10 +142,7 @@ function App() {
141
142
return (
143
<div className="App">
144
<div className="black-nav">
- <h4 style=
145
- {%raw%}
146
- {{ color: 'red', fontSize: '30px' }}
147
- {% endraw %}>블로그임</h4>
+ <h4 style={{ color: 'red', fontSize: '30px' }}>블로그임</h4>
148
</div>
149
<h4>{post}</h4>
150
@@ -156,4 +154,5 @@ export default App;
156
154
157
155
위와 같이 style을 사용할 때는, {} 안에
158
object 형식으로 넣어줘야한다.
159
-{%endraw%}
+{% endraw %}
0 commit comments