mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 06:28:33 +00:00
28 lines
799 B
JavaScript
28 lines
799 B
JavaScript
import StyledWrapper from './StyledWrapper';
|
|
import Docs from '../Docs';
|
|
import Info from './Info';
|
|
import { IconBox } from '@tabler/icons';
|
|
import RequestsNotLoaded from './RequestsNotLoaded';
|
|
|
|
const Overview = ({ collection }) => {
|
|
return (
|
|
<div className="h-full">
|
|
<div className="grid grid-cols-5 gap-5 h-full">
|
|
<div className="col-span-2">
|
|
<div className="text-lg font-medium flex items-center gap-2">
|
|
<IconBox size={20} stroke={1.5} />
|
|
{collection?.name}
|
|
</div>
|
|
<Info collection={collection} />
|
|
<RequestsNotLoaded collection={collection} />
|
|
</div>
|
|
<div className="col-span-3">
|
|
<Docs collection={collection} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Overview;
|