Remove dependencies to other presenters to LeaveRoomPresenter.

This commit is contained in:
Benoit Marty 2024-10-07 10:36:14 +02:00 committed by Benoit Marty
parent 9772535640
commit 0a7de7cc7d
9 changed files with 49 additions and 44 deletions

View file

@ -1,16 +0,0 @@
/*
* Copyright 2023, 2024 New Vector Ltd.
*
* SPDX-License-Identifier: AGPL-3.0-only
* Please see LICENSE in the repository root for full details.
*/
package io.element.android.features.leaveroom.api
import androidx.compose.runtime.Composable
import io.element.android.libraries.architecture.Presenter
interface LeaveRoomPresenter : Presenter<LeaveRoomState> {
@Composable
override fun present(): LeaveRoomState
}