import React from 'react'; import { SxProps } from '@mui/material'; import Box from '@mui/material/Box'; import HireRequirement from './HireRequirement'; import AgentRepo from './AgentRepo'; import AgentCart from './AgentCart'; export default React.memo<{ style?: SxProps }>(({ style = {} }) => { return ( ); });