adding new doc page

This commit is contained in:
2023-10-22 23:53:57 +02:00
parent aaffacb265
commit 70b44cbd29
5 changed files with 20 additions and 1 deletions

View File

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