import React from 'react'; import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; const Overview = () => (
Content of overview tab

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

); const Deployments = () => (
Content of deployments tab

Contrary to popular belief, Lorem Ipsum is not simply random text.

); 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 ProjectTab = () => { return ( Overview Deployments Database Integrations Settings ); }; export default ProjectTab;