mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-14 06:15:59 -05:00
16 lines
435 B
TypeScript
16 lines
435 B
TypeScript
import { Flex } from '@invoke-ai/ui-library';
|
|
import { ModelManager } from 'features/modelManagerV2/subpanels/ModelManager';
|
|
import { ModelPane } from 'features/modelManagerV2/subpanels/ModelPane';
|
|
import { memo } from 'react';
|
|
|
|
const ModelManagerTab = () => {
|
|
return (
|
|
<Flex layerStyle="body" w="full" h="full" gap="2" p={2}>
|
|
<ModelManager />
|
|
<ModelPane />
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
export default memo(ModelManagerTab);
|