13 lines
199 B
React
13 lines
199 B
React
import React from 'react'
|
|
|
|
export default function Iframe({src, title}) {
|
|
return (
|
|
<iframe
|
|
src={src}
|
|
title={title}
|
|
className='w-full h-full'
|
|
>
|
|
</iframe>
|
|
)
|
|
}
|