mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-15 15:05:15 +03:00
14 lines
254 B
Swift
14 lines
254 B
Swift
// Copyright © 2021 Tokenary. All rights reserved.
|
|
|
|
import Cocoa
|
|
|
|
class AddAccountOptionCellView: NSTableRowView {
|
|
|
|
@IBOutlet weak var titleLabel: NSTextField!
|
|
|
|
func setup(title: String) {
|
|
titleLabel.stringValue = title
|
|
}
|
|
|
|
}
|