Warning, /network/tokodon/src/content/ui/ThreadPage.qml is written in an unsupported language. File is not indexed.

0001 // SPDX-FileCopyrightText: 2023 Carl Schwan <carl@carlschwan.eu>
0002 // SPDX-License-Identifier: LGPL-2.0-or-later
0003 
0004 import QtQuick 2.15
0005 import org.kde.kmasto 1.0
0006 
0007 TimelinePage {
0008     id: root
0009 
0010     required property string postId
0011 
0012     expandedPost: true
0013     showPostAction: false
0014 
0015     model: ThreadModel {
0016         postId: root.postId
0017     }
0018 }
0019