mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2025-08-08 13:04:07 +00:00
* Add navigation for project page * Use tab component for switching panels * Get project details only on id changes --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
81 lines
2.0 KiB
TypeScript
81 lines
2.0 KiB
TypeScript
import React from 'react';
|
|
import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
|
|
|
|
const Overview = () => (
|
|
<div>
|
|
Content of overview tab
|
|
<p className="block">
|
|
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
|
|
</p>
|
|
</div>
|
|
);
|
|
const Deployments = () => (
|
|
<div>
|
|
Content of deployments tab
|
|
<p className="block">
|
|
Contrary to popular belief, Lorem Ipsum is not simply random text.
|
|
</p>
|
|
</div>
|
|
);
|
|
const Database = () => (
|
|
<div>
|
|
Content of database tab
|
|
<p className="block">
|
|
It is a long established fact that a reader will be distracted by the
|
|
readable content of a page when looking at its layout.
|
|
</p>
|
|
</div>
|
|
);
|
|
const Integrations = () => (
|
|
<div>
|
|
Content of integrations tab
|
|
<p className="block">
|
|
There are many variations of passages of Lorem Ipsum available.
|
|
</p>
|
|
</div>
|
|
);
|
|
const Settings = () => (
|
|
<div>
|
|
Content of settings tab
|
|
<p className="block">
|
|
It uses a dictionary of over 200 Latin words, combined with a handful of
|
|
model sentence.
|
|
</p>
|
|
</div>
|
|
);
|
|
|
|
const ProjectTab = () => {
|
|
return (
|
|
<Tabs
|
|
selectedTabClassName={
|
|
'border-b-2 border-gray-900 text-gray-900 focus:outline-none'
|
|
}
|
|
>
|
|
<TabList className="flex border-b border-gray-300 text-gray-400">
|
|
<Tab className={'p-2 cursor-pointer'}>Overview</Tab>
|
|
<Tab className={'p-2 cursor-pointer'}>Deployments</Tab>
|
|
<Tab className={'p-2 cursor-pointer'}>Database</Tab>
|
|
<Tab className={'p-2 cursor-pointer'}>Integrations</Tab>
|
|
<Tab className={'p-2 cursor-pointer'}>Settings</Tab>
|
|
</TabList>
|
|
<TabPanel>
|
|
<Overview />
|
|
</TabPanel>
|
|
<TabPanel>
|
|
<Deployments />
|
|
</TabPanel>
|
|
<TabPanel>
|
|
<Database />
|
|
</TabPanel>
|
|
<TabPanel>
|
|
<Integrations />
|
|
</TabPanel>
|
|
<TabPanel>
|
|
<Settings />
|
|
</TabPanel>
|
|
</Tabs>
|
|
);
|
|
};
|
|
|
|
export default ProjectTab;
|