// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React, { FC, HTMLAttributes } from 'react'; import { BaseProps } from '../../Base'; import { StyledChannelList } from './Styled'; export interface ChannelListProps extends Omit, 'css'>, BaseProps {} export const ChannelList: FC> = ( props ) => { return ( {props.children} ); }; export default ChannelList;