mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-21 14:47:41 +01:00
12 lines
240 B
JavaScript
12 lines
240 B
JavaScript
|
import React from 'react'
|
||
|
import './VideoPlaceholder.css'
|
||
|
|
||
|
export function VideoPlaceholder(props) {
|
||
|
return (
|
||
|
<div className="videoPlaceholder">
|
||
|
<div className="videoPlaceholderBox">
|
||
|
<p>{props.children}</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
}
|