Complete the code to create a route group folder named __api__ in SvelteKit.
src/routes/[1]/users/+page.svelteIn SvelteKit, route groups are created by wrapping the folder name in parentheses, like (api). This groups routes without affecting the URL path.
Complete the code to import a component from a route group folder named (admin).
import AdminPanel from '$routes/[1]/dashboard/+page.svelte';
When importing from a route group folder, include the parentheses in the path to match the folder name exactly.
Fix the error in the route group folder name to correctly group routes without changing the URL.
src/routes/[1]/profile/+page.svelteRoute groups require parentheses around the folder name to group routes without affecting the URL.
Fill both blanks to create a route group folder and a nested route inside it.
src/routes/[1]/[2]/+page.svelte
The folder (dashboard) is a route group, and settings is a nested route inside it.
Fill all three blanks to create a route group, a nested folder, and a page component inside it.
src/routes/[1]/[2]/[3]/+page.svelte
The route group (user) contains a nested folder profile, which itself contains the edit page.