12 lines
232 B
QML
12 lines
232 B
QML
/*
|
|
* SPDX-FileCopyrightText: 2016 David Rosca <nowrep@gmail.com>
|
|
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
import QtQuick 2.0
|
|
|
|
Rectangle {
|
|
id: root
|
|
color: "darkblue"
|
|
}
|
|
|