Update frontend/src/App.js
Browse files- frontend/src/App.js +1 -1
frontend/src/App.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import React, { useState, useEffect } from 'react';
|
2 |
import _ from 'lodash';
|
3 |
-
import './
|
4 |
|
5 |
const ScoreBar = ({ score }) => {
|
6 |
const percentage = score <= 1 ? score * 100 : score;
|
|
|
1 |
import React, { useState, useEffect } from 'react';
|
2 |
import _ from 'lodash';
|
3 |
+
import './App.css';
|
4 |
|
5 |
const ScoreBar = ({ score }) => {
|
6 |
const percentage = score <= 1 ? score * 100 : score;
|