import React from 'react'; import OverviewTabPanel from './OverviewTabPanel'; import DeploymentsTabPanel from './DeploymentsTabPanel'; import SettingsTabPanel from './SettingsTabPanel'; 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.

); export const projectTabRoutes = [ { index: true, element: , }, { path: 'deployments', element: , }, { path: 'database', element: , }, { path: 'integrations', element: , }, { path: 'settings', element: , }, ];