import { channelsList } from "@dashboard/channels/fixtures";
import { limits, limitsReached } from "@dashboard/fixtures";
import React from "react";
import ChannelsListPage, { ChannelsListPageProps } from "./ChannelsListPage";
const props: ChannelsListPageProps = {
channelsList,
limits,
onRemove: () => undefined,
};
export default {
title: "Channels / Channels list",
};
export const Default = () => ;
export const Empty = () => ;
export const NoLimits = () => (
);
export const LimitsReached = () => (
);