import { Card, Button } from "flowbite-react"; import { useState } from "react"; import Image from "next/image"; import { ReleaseInfoStreaming } from "./ReleaseInfo.LicensedPlatforms"; export const ReleaseInfoBasics = (props: { release_id: number; image: string; title: { ru: string; original: string }; note: string | null; description: string; }) => { const [isFullDescription, setIsFullDescription] = useState(false); return (

{props.title.ru}

{props.title.original}

{props.note && (
)}

{props.description}

); };