Untitled

mail@pastecode.io avatar
unknown
plain_text
4 months ago
255 B
1
Indexable
package com.orbinnovations.orb.features.settings

import androidx.compose.runtime.Composable
import com.orbinnovations.designsystem.composeables.AppBackground

@Composable
fun SettingsScreen() {
    AppBackground {
        SettingsScreenContent()
    }

}
Leave a Comment