File tree Expand file tree Collapse file tree 3 files changed +3
-12
lines changed Expand file tree Collapse file tree 3 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ func SetupServer() Server {
24
24
}
25
25
26
26
func (s * Server ) Run () {
27
- log .Info ("Starting Server on 0.0.0.0:80 " )
28
- err := http .ListenAndServe ("0.0.0.0:80 " , s .router )
27
+ log .Info ("Starting Server on 0.0.0.0:8081 " )
28
+ err := http .ListenAndServe ("0.0.0.0:8081 " , s .router )
29
29
if err != nil {
30
- log .Error ("Error while listening 0.0.0.0:80 " )
30
+ log .Error ("Error while listening 0.0.0.0:8081 " )
31
31
}
32
32
}
33
33
Original file line number Diff line number Diff line change @@ -7,11 +7,6 @@ import TrafficChart from './components/TrafficChart';
7
7
8
8
import { data } from './data' ;
9
9
10
- export interface IAppState {
11
- selectedPoint : Point ;
12
- setSelectedPoint : Dispatch < SetStateAction < Point > > ;
13
- }
14
-
15
10
const theme = {
16
11
colors : [
17
12
'#935B92' ,
Original file line number Diff line number Diff line change @@ -5,7 +5,3 @@ import App from './App';
5
5
6
6
ReactDOM . render ( < App /> , document . getElementById ( 'root' ) ) ;
7
7
8
- // If you want your app to work offline and load faster, you can change
9
- // unregister() to register() below. Note this comes with some pitfalls.
10
- // Learn more about service workers: https://bit.ly/CRA-PWA
11
- // serviceWorker.unregister();
You can’t perform that action at this time.
0 commit comments