Skip to content

Commit

Permalink
Rewrote VideoPresentation to tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ipasic-softserve committed Jul 26, 2024
1 parent fe27dba commit a954211
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@ import Typography from '@mui/material/Typography'
import VideoBox from '~/components/video-box/VideoBox'
import { ComponentEnum } from '~/types'

const VideoPresentation = ({ video, videoPreview, videoMock }) => {
interface VideoPresentationProps {
video: string
videoPreview: boolean
videoMock: string
}

const VideoPresentation = ({
video,
videoPreview,
videoMock
}: VideoPresentationProps) => {
const { t } = useTranslation()

return (
Expand Down

0 comments on commit a954211

Please sign in to comment.