- Implemented new reusable components including Label, Input, InputOTP, HoverCard, Popover, Pagination, NavigationMenu, Menubar, ScrollArea, Resizable, RadioGroup, and Progress under `docs/06_Frontend/FIGMA/src/app/components/ui/`. - Enhanced structural organization to improve scalability and maintainability. - Updated `settings.gradle.kts` to include the new module `frontend:features:nennung-feature`. Signed-off-by: Stefan Mogeritsch <stefan.mo.co@gmail.com>
11 lines
356 B
Kotlin
11 lines
356 B
Kotlin
import androidx.compose.runtime.Composable
|
|
import at.mocode.nennung.feature.presentation.NennungsMaske
|
|
import at.mocode.nennung.feature.presentation.NennungViewModel
|
|
import org.koin.compose.viewmodel.koinViewModel
|
|
|
|
@Composable
|
|
actual fun NennungScreenContent() {
|
|
val viewModel: NennungViewModel = koinViewModel()
|
|
NennungsMaske(viewModel = viewModel)
|
|
}
|