1
0
Fork 0
mirror of synced 2024-06-17 18:14:44 +12:00
Rare/Rare/Components/Tabs/Settings/About.py
2021-02-19 12:57:55 +01:00

12 lines
317 B
Python

from PyQt5.QtWidgets import QWidget, QVBoxLayout, QFormLayout, QLabel
class About(QWidget):
def __init__(self):
super(About, self).__init__()
self.layout = QVBoxLayout()
self.title = QLabel("<h2>About</h2>")
self.layout.addWidget(self.title)
self.setLayout(self.layout)