mirror of
https://github.com/He4eT/elseifplayer.git
synced 2026-05-05 01:17:22 +00:00
23 lines
400 B
JavaScript
23 lines
400 B
JavaScript
import { h } from 'preact'
|
|
import { Link } from 'wouter-preact'
|
|
|
|
import {
|
|
buildPlayLinkHref
|
|
} from '~/src/utils/utils.routing'
|
|
|
|
export default ({ name, ifdb, url }) => (
|
|
<div>
|
|
<h4>{name}</h4>
|
|
<a
|
|
target='_blank'
|
|
rel='noopener'
|
|
href={ifdb}>
|
|
IFDB page
|
|
</a>
|
|
<span> | </span>
|
|
<Link
|
|
href={buildPlayLinkHref({ url })}>
|
|
Play
|
|
</Link>
|
|
</div>
|
|
)
|