import React from 'react' import { Arrow } from './Arrow' import './MovieRow.css' // title: string // onClick: () => void export function MovieRow(props) { return (
props.onClick && props.onClick()}>
{props.title}

Watch movie

) }