Skip to content

Commit 13d4f88

Browse files
committed
fix lint
1 parent 7c6429c commit 13d4f88

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

frontend/components/service/Home/MainTalkList.tsx

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,20 @@ import { useTranslation } from 'react-i18next'
33
import { Heading2 } from '../../../assets/styles/typo'
44
import styled from 'styled-components'
55
import Linkify from 'react-linkify'
6-
import Resources from "../../../data/constants/resources";
6+
import Resources from '../../../data/constants/resources'
77

88
const 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

1616
const ProgramLink = styled.a`
17-
color: ${props => props.theme.colors.blue0};
17+
color: ${(props) => props.theme.colors.blue0};
1818
`
1919

20-
2120
const 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

Comments
 (0)