import { Card } from "flowbite-react"; export const ReleaseInfoBasics = (props: { image: string; title: { ru: string; original: string }; note: string | null; description: string; }) => { return (

{props.title.ru}

{props.title.original}

{props.note && (
)}

{props.description}

); };