Skip to content

Commit

Permalink
feat :: DmsCalendar 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
parkuiery committed Nov 27, 2024
1 parent 7de39f9 commit 2a9cdab
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package team.aliens.dms.kmp.core.designsystem.calendar

import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import kotlinx.datetime.LocalDate

@Composable
fun DmsCalendar(
modifier: Modifier = Modifier,
selectDate: LocalDate,
onSelectedDateChange: (newDate: LocalDate) -> Unit,
) {

}

0 comments on commit 2a9cdab

Please sign in to comment.