mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-17 07:25:59 -05:00
25 lines
679 B
TypeScript
25 lines
679 B
TypeScript
/* eslint-disable i18next/no-literal-string */
|
|
import { Flex } from '@invoke-ai/ui-library';
|
|
import { ControlLayersToolbar } from 'features/controlLayers/components/ControlLayersToolbar';
|
|
import { StageComponent } from 'features/controlLayers/components/StageComponent';
|
|
import { memo } from 'react';
|
|
|
|
export const ControlLayersEditor = memo(() => {
|
|
return (
|
|
<Flex
|
|
position="relative"
|
|
flexDirection="column"
|
|
height="100%"
|
|
width="100%"
|
|
rowGap={4}
|
|
alignItems="center"
|
|
justifyContent="center"
|
|
>
|
|
<ControlLayersToolbar />
|
|
<StageComponent />
|
|
</Flex>
|
|
);
|
|
});
|
|
|
|
ControlLayersEditor.displayName = 'ControlLayersEditor';
|