import React from "react"; import { Movie } from "./movie-wall"; import tmdb from "./tmdb"; export interface SidebarProps extends React.ComponentPropsWithRef<"div"> { movie: Movie; } export function Sidebar({ movie }: SidebarProps) { const style = { backgroundImage: tmdb.makeBgImgUrl(movie.backdrop_path ?? "") } return
}