import React from 'react'; import { ClusterId, Topic, TopicDetails, TopicName } from 'lib/interfaces'; import Breadcrumb from 'components/common/Breadcrumb/Breadcrumb'; import { NavLink, Switch, Route } from 'react-router-dom'; import { clusterTopicsPath, clusterTopicSettingsPath, clusterTopicPath, clusterTopicMessagesPath } from 'lib/paths'; import OverviewContainer from './Overview/OverviewContainer'; import MessagesContainer from './Messages/MessagesContainer'; import SettingsContainer from './Settings/SettingsContainer'; interface Props extends Topic, TopicDetails { clusterId: ClusterId; topicName: TopicName; } const Details: React.FC = ({ clusterId, topicName, }) => { return (
{topicName}

); } export default Details;