Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
export * from './math-bar';
|
||||
export * from './math-bar-properties';
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
type MathBarPosOptions = {
|
||||
readonly val: string;
|
||||
};
|
||||
export declare const createMathBarPos: ({ val }: MathBarPosOptions) => XmlComponent;
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare const createMathBarProperties: ({ type }: {
|
||||
readonly type: string;
|
||||
}) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+8
@@ -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
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user