@@ -3,21 +3,20 @@ import { useTranslation } from 'react-i18next'
33import { Heading2 } from '../../../assets/styles/typo'
44import styled from 'styled-components'
55import Linkify from 'react-linkify'
6- import Resources from " ../../../data/constants/resources" ;
6+ import Resources from ' ../../../data/constants/resources'
77
88const Content = styled . div `
99 margin-top: 1rem;
1010 white-space: pre-line;
1111 a {
12- color: ${ props => props . theme . colors . blue0 } ;
12+ color: ${ ( props ) => props . theme . colors . blue0 } ;
1313 }
1414`
1515
1616const ProgramLink = styled . a `
17- color: ${ props => props . theme . colors . blue0 } ;
17+ color: ${ ( props ) => props . theme . colors . blue0 } ;
1818`
1919
20-
2120const MainTalkList = ( ) => {
2221 const { t } = useTranslation ( )
2322
@@ -28,21 +27,28 @@ const MainTalkList = () => {
2827 { t ( 'label:aboutEvent' ) }
2928 { '' } 발표 및 시간표는 { '' }
3029 < ProgramLink href = { `/program/talks` } >
31- 프로그램 > 발표
30+ 프로그램 { '>' } 발표
3231 </ ProgramLink >
3332 에서 확인하실 수 있습니다.
3433 </ Content >
3534 < Content >
3635 < Linkify >
37- 파이썬 사용 사례와 지식을 공유하는 다양한 발표 세션이 열립니다.
38- 이외의 모든 공지사항은 { '' }
39- < ProgramLink href = { Resources . pyconkrFacebook } target = "_blank" >
36+ 파이썬 사용 사례와 지식을 공유하는 다양한 발표 세션이
37+ 열립니다. 이외의 모든 공지사항은 { '' }
38+ < ProgramLink
39+ href = { Resources . pyconkrFacebook }
40+ target = "_blank"
41+ >
4042 공식 페이스북
4143 </ ProgramLink >
4244 , { '' }
43- < ProgramLink href = { Resources . pyconkrTwitter } target = "_blank" >
45+ < ProgramLink
46+ href = { Resources . pyconkrTwitter }
47+ target = "_blank"
48+ >
4449 트위터
45- </ ProgramLink > , 이곳을 통해 공지될 예정입니다.
50+ </ ProgramLink >
51+ , 이곳을 통해 공지될 예정입니다.
4652 </ Linkify >
4753 </ Content >
4854 </ div >
0 commit comments