2024-05-06 11:33:00 +00:00
|
|
|
import React from "react";
|
|
|
|
import { Movie } from "./movie-wall";
|
|
|
|
export interface SidebarProps extends React.ComponentPropsWithRef<"div"> {
|
|
|
|
movie: Movie;
|
|
|
|
}
|
|
|
|
export function Sidebar({ movie }: SidebarProps) {
|
|
|
|
const style = {
|
2024-05-07 11:09:48 +00:00
|
|
|
|
2024-05-06 11:33:00 +00:00
|
|
|
}
|
|
|
|
return <div id="sidebar" style={style}>
|
|
|
|
<h1>{movie?.title ?? "loading"}</h1>
|
|
|
|
<p>{movie?.overview ?? "loading"}</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
}
|