You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
509 B
TypeScript

import React from 'react';
import {
Layout,
} from 'antd';
import ControlsSideBarComponent from './controls-side-bar';
import CanvasWrapperComponent from './canvas-wrapper-component';
import ObjectSideBarComponent from './objects-side-bar/objects-side-bar';
export default function StandardWorkspaceComponent(): JSX.Element {
return (
<Layout>
<ControlsSideBarComponent />
<CanvasWrapperComponent />
<ObjectSideBarComponent />
</Layout>
);
}