File tree 1 file changed +18
-23
lines changed
1 file changed +18
-23
lines changed Original file line number Diff line number Diff line change @@ -196,30 +196,25 @@ const CampContest = ({ seasonList_, seasonData_ }) => {
196
196
</ ArchiveButton >
197
197
</ ArchiveWrap >
198
198
) }
199
- { currentSeasonData . length !== 0 && currentSeasonData . date ? (
200
- < >
201
- < TextWrap
202
- title = { "콘테스트 일자" }
203
- content = { currentSeasonData . date }
204
- />
205
- < TextWrap
206
- title = { "캠프 콘테스트 소개" }
207
- content = { `캠프 콘테스트는 캠프 기간동안 배운 알고리즘을 적용해볼 수 있는 모의고사 형식의 대회입니다.
199
+ < TextWrap
200
+ title = { "콘테스트 일자" }
201
+ content = {
202
+ currentSeasonData . length !== 0 && currentSeasonData . date
203
+ ? currentSeasonData . date
204
+ : "이번 시즌에는 Camp Contest가 진행되지 않았습니다. 다음 시즌을 기대해 주세요."
205
+ }
206
+ />
207
+ < TextWrap
208
+ title = { "캠프 콘테스트 소개" }
209
+ content = { `캠프 콘테스트는 캠프 기간동안 배운 알고리즘을 적용해볼 수 있는 모의고사 형식의 대회입니다.
208
210
개인전으로 진행되며, ICPC Sinchon Algorithm Camp 참가자만 참여할 수 있습니다.` }
209
- />
210
- < TextWrap
211
- title = { "출제 경향" }
212
- content = {
213
- "ICPC Sinchon Algorithm Camp을 통해 학습한 대부분의 알고리즘을 문제로 다루는 것을 목표로 합니다."
214
- }
215
- />
216
- </ >
217
- ) : (
218
- < TextWrap
219
- title = { "이번 시즌에는 Camp Contest가 진행되지 않았습니다" }
220
- content = { "다음 시즌을 기대해 주세요" }
221
- />
222
- ) }
211
+ />
212
+ < TextWrap
213
+ title = { "출제 경향" }
214
+ content = {
215
+ "ICPC Sinchon Algorithm Camp을 통해 학습한 대부분의 알고리즘을 문제로 다루는 것을 목표로 합니다."
216
+ }
217
+ />
223
218
{ currentSeasonData . studies &&
224
219
Array . from ( currentSeasonData . studies ) . map ( ( study ) => {
225
220
return (
You can’t perform that action at this time.
0 commit comments