22 lines
544 B
Kotlin
22 lines
544 B
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2026 NewPipe e.V. <https://newpipe-ev.de>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
package net.newpipe.app
|
|
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.ui.tooling.preview.Preview
|
|
import net.newpipe.app.di.KoinApp
|
|
import net.newpipe.app.theme.AppTheme
|
|
import org.koin.compose.KoinApplication
|
|
import org.koin.plugin.module.dsl.koinConfiguration
|
|
|
|
@Composable
|
|
@Preview
|
|
fun App() {
|
|
KoinApplication(configuration = koinConfiguration<KoinApp>()) {
|
|
AppTheme {
|
|
}
|
|
}
|
|
}
|