Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import { Paragraph } from './paragraph';
|
||||
import { Table } from './table';
|
||||
export type IHeaderOptions = {
|
||||
readonly children: readonly (Paragraph | Table)[];
|
||||
};
|
||||
export declare class Header {
|
||||
readonly options: IHeaderOptions;
|
||||
constructor(options?: IHeaderOptions);
|
||||
}
|
||||
export declare class Footer {
|
||||
readonly options: IHeaderOptions;
|
||||
constructor(options?: IHeaderOptions);
|
||||
}
|
||||
Reference in New Issue
Block a user