import React from 'react'; import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; import { Project } from 'gql-client'; import OverviewTabPanel from './OverviewTabPanel'; import DeploymentsTabPanel from './DeploymentsTabPanel'; import { ProjectDetails } from '../../../types/project'; import SettingsTabPanel from './SettingsTabPanel'; interface ProjectTabsProps { project: Project; organizationProject: ProjectDetails; onUpdate: () => Promise; } const Database = () => (
Content of database tab

It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.

); const Integrations = () => (
Content of integrations tab

There are many variations of passages of Lorem Ipsum available.

); const ProjectTabs = ({ project, onUpdate, organizationProject, }: ProjectTabsProps) => { return ( Overview Deployments Database Integrations Settings ); }; export default ProjectTabs;