Skip to content

Instantly share code, notes, and snippets.

@johnotu
Created November 11, 2020 08:29
Show Gist options
  • Save johnotu/a4396473610a433a7709d2406155e96d to your computer and use it in GitHub Desktop.
Save johnotu/a4396473610a433a7709d2406155e96d to your computer and use it in GitHub Desktop.
DigitalClock - Entry file
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