11 lines
152 B
Swift
11 lines
152 B
Swift
|
struct SharingState: Stateable {
|
||
|
var sharingShown: Bool
|
||
|
}
|
||
|
|
||
|
// MARK: Init
|
||
|
extension SharingState {
|
||
|
init() {
|
||
|
sharingShown = false
|
||
|
}
|
||
|
}
|