added game link to env file

This commit is contained in:
victorAnumudu
2024-04-02 17:23:54 +01:00
parent a5631b6291
commit bcd45edb2f
9 changed files with 67 additions and 17 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react'
export default function Iframe({src, title}) {
return (
<iframe
src={src}
title={title}
className='w-full h-full'
>
</iframe>
)
}