import React from 'react'; import { Link } from 'react-router-dom'; import { ChannelEntity } from '../entities/ChannelEntity'; type Props = { channel: ChannelEntity; className?: string; style?: React.CSSProperties; } export const ChannelNameAsLink = (props: Props) => { const { channel, className, style } = props; return ( {channel.title || channel.handle} ); };