Skip to content

Commit 74fafce

Browse files
committed
ff
1 parent 0779298 commit 74fafce

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

_posts/React/2023-03-28-08 페이지 나누기.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function App() {
107107
<div
108108
className="main-bg"
109109
style={{
110-
backgroundImage: 'url('+bg ')',
110+
backgroundImage: 'url(' + bg + ')',
111111
color: '',
112112
}}
113113
></div>

_posts/ReactNative/2023-05-03-12 네비게이션.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,20 @@ route.params 안에서 변수를 전달할 수 있다.
121121
```jsx
122122
<Stack.Navigator
123123
initialRouteName="List"
124-
screenOptions={{
124+
screenOptions={ {
125125
contentStyle: {
126126
backgroundColor: '#fff',
127127
},
128-
}}
128+
} }
129129
>
130130
```
131131
132132
위와 같이 해주면 모든 color가 흰색이 됨
133133
134+
<% endraw %>
135+
136+
<% raw %>
137+
134138
```jsx
135139
<Stack.Navigator
136140
initialRouteName="List"

0 commit comments

Comments
 (0)