From 5f97cb946cef12206781d6a7d2359a5613aca959 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Mon, 6 May 2024 19:09:21 +0200 Subject: [PATCH] Create tutorial-units.js --- documentation/tutorial-units.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 documentation/tutorial-units.js diff --git a/documentation/tutorial-units.js b/documentation/tutorial-units.js new file mode 100644 index 0000000..da49cab --- /dev/null +++ b/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", + }, + }, + }, +};