right-tree/frontend/src/index.js
Dana Lambert aedd224a63 Setup frontend styling
- Add node-sass, bootstrap and reactstrap
- Setup styles directory with themes file and base styles
- Replace create-react-app content with sample content to test styles
2021-10-06 16:18:01 +13:00

20 lines
572 B
JavaScript

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import reportWebVitals from './reportWebVitals';
// Styles
import './assets/styles/main.scss';
import 'bootstrap/dist/css/bootstrap.min.css';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();