docs(tutorials): add refine tutorial

This commit is contained in:
necatiozmen
2023-11-15 11:10:10 +03:00
parent 29680d1577
commit dc376b42da
20 changed files with 841 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { redirect } from '@sveltejs/kit';
import type { PageLoad } from './$types';
export const load: PageLoad = async () => {
throw redirect(303, '/docs/tutorials/refine/step-1');
};