mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
import { Flex } from '@chakra-ui/react';
|
|
import HiresOptions from './HiresOptions';
|
|
import SeamlessOptions from './SeamlessOptions';
|
|
|
|
const OutputOptions = () => {
|
|
return (
|
|
<Flex gap={2} direction={'column'}>
|
|
<SeamlessOptions />
|
|
<HiresOptions />
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
export default OutputOptions;
|