make storybook a tabbed window

This commit is contained in:
Benjamin Palko 2025-09-07 23:12:11 -04:00
parent 8aced615ce
commit 32167ef44e
8 changed files with 279 additions and 207 deletions

View file

@ -0,0 +1,21 @@
import qs.components
import qs.config
import QtQuick
import QtQuick.Layouts
GridLayout {
flow: GridLayout.TopToBottom
columns: 2
rows: 10
ColumnLayout {
StyledText {
text: "Switch"
font.pixelSize: 18
}
StyledSwitch {
text: "Enable"
}
}
}