Skip to content

Commit

Permalink
feature #866: init FortuneDetailScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
chattymin committed Sep 21, 2024
1 parent e454ea6 commit c5c65fc
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package org.sopt.official.feature.fortune.feature.fortundDetail

import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import kotlinx.serialization.Serializable

@Serializable
data class FortuneDetail(val date: String)

@Composable
fun FortuneDetailRoute(
date: String,
) {
FortuneDetailScreen(
date = date,
)
}

@Composable
fun FortuneDetailScreen(
date: String,
) {
Text(text = "Fortune Detail Screen: $date")
}

0 comments on commit c5c65fc

Please sign in to comment.