Kaynağa Gözat

add lang in IChannel

visuddhinanda 2 yıl önce
ebeveyn
işleme
f4de97ff2a
1 değiştirilmiş dosya ile 1 ekleme ve 0 silme
  1. 1 0
      dashboard/src/components/channel/Channel.tsx

+ 1 - 0
dashboard/src/components/channel/Channel.tsx

@@ -4,6 +4,7 @@ export interface IChannel {
   name: string;
   id: string;
   type?: TChannelType;
+  lang?: string;
 }
 const ChannelWidget = ({ name, id }: IChannel) => {
   return <span>{name}</span>;