Skip to content

Commit

Permalink
✨ Backup Screen init
Browse files Browse the repository at this point in the history
Signed-off-by: shub39 <cptnshubham39@gmail.com>
  • Loading branch information
shub39 committed Feb 9, 2025
1 parent 50b8baa commit a95a759
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.shub39.grit.core.presentation.settings

import androidx.compose.runtime.Composable
import com.shub39.grit.core.domain.backup.ExportRepo
import com.shub39.grit.core.domain.backup.RestoreRepo
import com.shub39.grit.core.presentation.components.PageFill
import org.koin.compose.koinInject

@Composable
fun Backup(
exportRepo: ExportRepo = koinInject(),
restoreRepo: RestoreRepo = koinInject()
) = PageFill {

}

0 comments on commit a95a759

Please sign in to comment.