mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-11 17:55:33 +00:00
12 lines
No EOL
240 B
JavaScript
12 lines
No EOL
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>
|
|
)
|
|
} |