Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
export * from './math-function';
|
||||
export * from './math-function-name';
|
||||
export * from './math-function-properties';
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
import { MathComponent } from '../math-component';
|
||||
export declare class MathFunctionName extends XmlComponent {
|
||||
constructor(children: readonly MathComponent[]);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Generated
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare class MathFunctionProperties extends XmlComponent {
|
||||
constructor();
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
import { MathComponent } from '../math-component';
|
||||
export type IMathFunctionOptions = {
|
||||
readonly children: readonly MathComponent[];
|
||||
readonly name: readonly MathComponent[];
|
||||
};
|
||||
export declare class MathFunction extends XmlComponent {
|
||||
constructor(options: IMathFunctionOptions);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user