20 lines
381 B
QML
20 lines
381 B
QML
|
// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
import QtQuick
|
||
|
|
||
|
import org.kde.kirigami as Kirigami
|
||
|
|
||
|
import com.redstrate.sukai.models
|
||
|
|
||
|
TimelinePage {
|
||
|
id: root
|
||
|
|
||
|
required property string uri
|
||
|
|
||
|
model: TimelineModel {
|
||
|
id: timelineModel
|
||
|
}
|
||
|
|
||
|
Component.onCompleted: timelineModel.loadThread(uri)
|
||
|
}
|