Created
November 11, 2020 08:29
-
-
Save johnotu/a4396473610a433a7709d2406155e96d to your computer and use it in GitHub Desktop.
DigitalClock - Entry file
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
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import 'bootstrap/dist/css/bootstrap.min.css'; | |
import 'font-awesome/css/font-awesome.min.css'; | |
import './index.css'; | |
import App from './App.js'; | |
ReactDOM.render( | |
<React.StrictMode> | |
<App /> | |
</React.StrictMode>, | |
document.getElementById('root') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment