import * as React from 'react'; import './App.css'; import JqxLayout, { ILayoutProps } from 'jqwidgets-scripts/jqwidgets-react-tsx/jqxlayout'; class App extends React.PureComponent<{}, ILayoutProps> { constructor(props: {}) { super(props); this.state = { layout: [{ items: [{ items: [{ height: '50%', items: [{ contentContainer: 'Document1Panel', title: 'Document 1', type: 'documentPanel' }, { contentContainer: 'Document2Panel', title: 'Document 2', type: 'documentPanel' }], minHeight: '25%', type: 'documentGroup' }, { height: '50%', items: [{ contentContainer: 'ErrorListPanel', title: 'Error List', type: 'layoutPanel' }, { contentContainer: 'OutputPanel', selected: true, title: 'Output', type: 'layoutPanel' }], pinnedHeight: '10%', type: 'tabbedGroup' }], orientation: 'vertical', type: 'layoutGroup', width: '60%' }, { items: [{ contentContainer: 'SolutionExplorerPanel', title: 'Solution Explorer', type: 'layoutPanel' }, { contentContainer: 'PropertiesPanel', title: 'Properties', type: 'layoutPanel' }], type: 'tabbedGroup', width: '40%' }], orientation: 'horizontal', type: 'layoutGroup' }] } } public render() { return (
Document 1 content
Document 2 content
List of errors
Output
Solution structure
List of properties
); } } export default App;