From c81c7b98b9f5ce660f2804778861bfe3799166c9 Mon Sep 17 00:00:00 2001 From: LadyBluenotes Date: Mon, 13 Oct 2025 09:22:43 -0700 Subject: [PATCH] add tutorial section --- docs/start/config.json | 19 +++++++++++++++++++ .../fetching-external-api.md | 0 .../reading-writing-file.md | 0 3 files changed, 19 insertions(+) rename docs/start/framework/react/{guide => tutorial}/fetching-external-api.md (100%) rename docs/start/framework/react/{guide => tutorial}/reading-writing-file.md (100%) diff --git a/docs/start/config.json b/docs/start/config.json index f0a87f21f40..39c2d034ce6 100644 --- a/docs/start/config.json +++ b/docs/start/config.json @@ -301,6 +301,25 @@ ] } ] + }, + { + "label": "Tutorials", + "children": [], + "frameworks": [ + { + "label": "react", + "children": [ + { + "label": "Reading and Writing a File", + "to": "framework/react/tutorial/reading-writing-file" + }, + { + "label": "Fetching Data from External API", + "to": "framework/react/tutorial/fetching-external-api" + } + ] + } + ] } ] } diff --git a/docs/start/framework/react/guide/fetching-external-api.md b/docs/start/framework/react/tutorial/fetching-external-api.md similarity index 100% rename from docs/start/framework/react/guide/fetching-external-api.md rename to docs/start/framework/react/tutorial/fetching-external-api.md diff --git a/docs/start/framework/react/guide/reading-writing-file.md b/docs/start/framework/react/tutorial/reading-writing-file.md similarity index 100% rename from docs/start/framework/react/guide/reading-writing-file.md rename to docs/start/framework/react/tutorial/reading-writing-file.md