Created
October 14, 2020 13:45
-
-
Save codebubb/dec9695bb34827e79957021b5b7db616 to your computer and use it in GitHub Desktop.
React YouTube Viewer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require('file-loader?name=[name].[ext]!./index.html'); | |
| import React from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| import { App } from './App'; | |
| import './App.scss'; | |
| const appElement = document.getElementById('app'); | |
| ReactDOM.render(<App />, appElement); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment