File size: 313 Bytes
0bd62e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Prism from "prismjs";
import demos_by_category from "$lib/json/demos.json";

type Demo = {
	name: string;
	dir: string;
	code: string;
	requirements: string[];
};
type Category = {
	category: string;
	demos: Demo[];
};

export async function load() {
	return {
		demos_by_category
	};
}