psychedelicious d71f11f55c Fixes typo
2022-10-29 04:25:27 +11:00

12 lines
186 B
TypeScript

import { Box } from '@chakra-ui/react';
const OutputHeader = () => {
return (
<Box flex="1" textAlign="left">
Other Options
</Box>
);
};
export default OutputHeader;