diff --git a/webapp/channels/src/components/admin_console/team_channel_settings/channel/channel_settings.tsx b/webapp/channels/src/components/admin_console/team_channel_settings/channel/channel_settings.tsx index 894a9afedc..d2c7d621f8 100644 --- a/webapp/channels/src/components/admin_console/team_channel_settings/channel/channel_settings.tsx +++ b/webapp/channels/src/components/admin_console/team_channel_settings/channel/channel_settings.tsx @@ -20,42 +20,31 @@ export interface ChannelSettingsState { total: number; } -export class ChannelsSettings extends React.PureComponent { - constructor(props: Props) { - super(props); - this.state = { - startCount: 0, - endCount: 1, - total: 0, - }; - } +export const ChannelsSettings = ({siteName}: Props) => { + return ( +
+ + + - render = () => { - return ( -
- - - - -
-
- - - -
+
+
+ + +
- ); - }; -} +
+ ); +};