Fix App.jsx two-page workflow JSX render and update study app layout

This commit is contained in:
nmemmert
2026-05-26 17:14:30 -04:00
commit f47a41ce6f
4459 changed files with 1059845 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
export * from './math-bar';
export * from './math-bar-properties';
+6
View File
@@ -0,0 +1,6 @@
import { XmlComponent } from '../../../xml-components';
type MathBarPosOptions = {
readonly val: string;
};
export declare const createMathBarPos: ({ val }: MathBarPosOptions) => XmlComponent;
export {};
@@ -0,0 +1,4 @@
import { XmlComponent } from '../../../xml-components';
export declare const createMathBarProperties: ({ type }: {
readonly type: string;
}) => XmlComponent;
@@ -0,0 +1 @@
export {};
+8
View File
@@ -0,0 +1,8 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
type MathBarOptions = {
readonly type: "top" | "bot";
readonly children: readonly MathComponent[];
};
export declare const createMathBar: ({ type, children }: MathBarOptions) => XmlComponent;
export {};
+1
View File
@@ -0,0 +1 @@
export {};