23 lines
330 B
Text
23 lines
330 B
Text
|
---
|
||
|
interface Props {
|
||
|
id: string;
|
||
|
postscript?: string
|
||
|
}
|
||
|
|
||
|
const { id, postscript } = Astro.props;
|
||
|
|
||
|
const link = new URL(`https://store.steampowered.com/widget/${id}/`)
|
||
|
|
||
|
if (postscript) {
|
||
|
link.searchParams.set("t", postscript)
|
||
|
}
|
||
|
|
||
|
---
|
||
|
|
||
|
<iframe
|
||
|
src={link.toString()}
|
||
|
frameborder="0"
|
||
|
width="100%"
|
||
|
height="190">
|
||
|
</iframe>
|