import * as React from "react";
import { Spotlight } from "./spotlight";
import { Pages } from "./pages";
import { Video } from "./video";
import { Playlist } from "../playlist";
import { LandingContent } from "./landing";
interface LandingComponentProps {
item: LandingContent;
}
export const Landing = ({ item }: LandingComponentProps) => {
if (item.kind === "pagesRow") {
return ;
} else if (item.kind === "spotlight") {
return ;
} else if (item.kind === "video") {
return ;
} else if (item.kind === "playlist") {
return ;
} else {
return <>>;
}
};