import React from 'react' import ReactDOM from 'react-dom' import VideoPlayer from './theme/CodeBlock/VideoPlayer' import './vite.css' const youtubeID = '4HGNqFdaD34' function MockCodeBlock() { return (
console.log('xxx') console.log('xxx') console.log('xxx')
) } function App() { return (
) } ReactDOM.render( , document.getElementById('root') )