Browse Source

Create tutorial-units.js

Stefan Pejcic 1 year ago
parent
commit
5f97cb946c
1 changed files with 31 additions and 0 deletions
  1. 31 0
      documentation/tutorial-units.js

+ 31 - 0
documentation/tutorial-units.js

@@ -0,0 +1,31 @@
+module.exports = {
+    tutorial: {
+        path_prefix: "/docs/tutorial/",
+        units: {
+            introduction: {
+                no: 1,
+                label: "Welcome",
+            },
+            "getting-started": {
+                no: 2,
+                label: "Create and deploy your first Refine app",
+            },
+            "understanding-dataprovider": {
+                no: 3,
+                label: "Understanding the Data Provider",
+            },
+            "understanding-resources": {
+                no: 4,
+                label: "Understanding the Resources",
+            },
+            "adding-crud-pages": {
+                no: 5,
+                label: "Adding CRUD pages",
+            },
+            "understanding-authprovider": {
+                no: 6,
+                label: "Understanding the Auth provider",
+            },
+        },
+    },
+};