9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
import { createRoot } from 'react-dom/client'
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<div>
|
|
<img src="/api/video" alt="" />
|
|
<img src="/api/video" alt="" />
|
|
<img src="/api/video" alt="" />
|
|
</div>
|
|
)
|