summaryrefslogtreecommitdiff
path: root/qml/pages/SketchPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/pages/SketchPage.qml')
-rw-r--r--qml/pages/SketchPage.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/qml/pages/SketchPage.qml b/qml/pages/SketchPage.qml
new file mode 100644
index 0000000..449b2aa
--- /dev/null
+++ b/qml/pages/SketchPage.qml
@@ -0,0 +1,12 @@
+import QtQuick 2.0
+import Sailfish.Silica 1.0
+import "../items"
+
+Page {
+ id: sketchPage
+
+ SketchArea {
+ id: area
+ anchors.fill: parent
+ }
+}