Skip to content

Commit

Permalink
#34 [chore] : 불필요한 주석 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
chanubc committed Aug 20, 2024
1 parent ece1cdb commit bf1a5e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fun WableButton(
@Preview(showBackground = true, backgroundColor = 0xFF000000)
@Composable
fun WableButtonPreview() {
WableTheme { // 테마 적용
WableTheme {
Column {
WableButton(text = "ㅎㅇㅎㅇ", onClick = {}, enabled = true)
WableButton(text = "zzzzzzzzzzzz", onClick = {}, enabled = false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fun WableAppBar(
modifier = Modifier.fillMaxHeight(),
) {
Icon(
painter = painterResource(id = com.teamwable.common.R.drawable.ic_share_back_btn), // 여기서 drawable 아이콘 사용
painter = painterResource(id = com.teamwable.common.R.drawable.ic_share_back_btn),
contentDescription = "",
)
}
Expand All @@ -51,7 +51,7 @@ fun WableAppBar(
modifier = Modifier.fillMaxHeight(),
) {
Icon(
painter = painterResource(id = com.teamwable.common.R.drawable.ic_share_cancel_btn), // 여기서 drawable 아이콘 사용
painter = painterResource(id = com.teamwable.common.R.drawable.ic_share_cancel_btn),
contentDescription = "Close",
)
}
Expand Down

0 comments on commit bf1a5e5

Please sign in to comment.