diff --git a/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx b/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx index 2aa6a14..d5bb0af 100644 --- a/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx +++ b/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx @@ -1,10 +1,14 @@ -import { Card } from "flowbite-react"; +import { Card, Button } from "flowbite-react"; +import { useState } from "react"; + export const ReleaseInfoBasics = (props: { image: string; title: { ru: string; original: string }; note: string | null; description: string; }) => { + const [isFullDescription, setIsFullDescription] = useState(false); + return (
@@ -27,7 +31,24 @@ export const ReleaseInfoBasics = (props: {
)} -

{props.description}

+

+ {props.description} +

+