forked from cerc-io/snowballtools-base
Nabarun Gogoi
413ed03eb8
* Implement dropdown for organizations switcher * Add dynamic route for organization id * Update routes for organization slug * Use organization slug for adding project * Refactor to fetch organizations at sidebar component * Update organization switcher based on searched project * Refactor types in frontend --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
24 lines
543 B
TypeScript
24 lines
543 B
TypeScript
import React from 'react';
|
|
import { Outlet } from 'react-router-dom';
|
|
|
|
import Sidebar from '../components/Sidebar';
|
|
|
|
const OrgSlug = () => {
|
|
return (
|
|
<div className="grid grid-cols-5 h-screen bg-light-blue-50">
|
|
<>
|
|
<div className="h-full">
|
|
<Sidebar />
|
|
</div>
|
|
<div className="col-span-4 h-full p-3 overflow-y-hidden">
|
|
<div className="bg-white rounded-3xl h-full overflow-y-auto">
|
|
<Outlet />
|
|
</div>
|
|
</div>
|
|
</>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default OrgSlug;
|