import React from 'react'; import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; import Overview from './Overview'; import Deployments from './Deployments'; import { ProjectDetails } from '../types/project'; interface ProjectTabsProps { project: ProjectDetails; } 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 Settings = () => (
Content of settings tab

It uses a dictionary of over 200 Latin words, combined with a handful of model sentence.

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