import React from 'react'; import { SxProps } from '@mui/material'; import Box from '@mui/material/Box'; import IconButton from '@mui/material/IconButton'; import SwapVertIcon from '@mui/icons-material/SwapVert'; export interface IAgentRepoProps { style?: SxProps; } const REPO_COLORS: string[] = [ 'rgb(172,172,172)', 'rgb(165,184,182)', 'rgb(159,195,192)', 'rgb(153,206,202)', 'rgb(107,204,198)', ]; export default React.memo(() => { const repos = React.useMemo( () => Array(30) .fill(0) .map((_, index) => ( )), [], ); return ( <> Agent Repo {repos} ); });