refactor some of the documentation about samples

This commit is contained in:
2023-11-18 18:47:04 +01:00
parent 9a6d6b914f
commit 9161d6f9ee
10 changed files with 247 additions and 96 deletions

8
samples Normal file
View File

@ -0,0 +1,8 @@
import { type Editor } from "../../main";
import { makeExampleFactory } from "../../Documentation";
export const loading_samples = (application: Editor): string => {
// @ts-ignore
const makeExample = makeExampleFactory(application);
return `# Loading samples`
}