Skip to content

Commit

Permalink
refactor: MainScreen 접근 제한자 수정(#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheonilyeong committed Jan 16, 2025
1 parent a50a04b commit f03d8b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ import kr.boostcamp_2024.course.main.component.StudyGroupItem
import kr.boostcamp_2024.course.main.viewmodel.MainViewModel

@Composable
fun MainScreen(
internal fun MainScreen(
onNotificationButtonClick: () -> Unit,
onCreateStudyButtonClick: () -> Unit,
onStudyGroupClick: (String) -> Unit,
Expand Down Expand Up @@ -115,7 +115,7 @@ fun MainScreen(

@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun MainScreen(
private fun MainScreen(
currentUser: User?,
studyGroups: List<StudyGroup>,
notifications: Int,
Expand Down

0 comments on commit f03d8b0

Please sign in to comment.