Skip to content

Commit a134527

Browse files
committed
Replaced GettingStarted with AddService.
1 parent 618a865 commit a134527

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

app/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ import React, { useContext } from 'react';
22
import ReactDOM from 'react-dom';
33
import SetupContext from './context/SetupContext.js';
44
import './index.css';
5-
import GettingStarted from './components/GettingStarted.jsx';
5+
// import GettingStarted from './components/GettingStarted.jsx';
6+
import AddService from './components/AddService.jsx'
67
import ServiceDashboard from './components/ServicesDashboard.jsx';
78

89
const App = () => {
910
const chronosSetup = useContext(SetupContext);
10-
return chronosSetup.setupRequired ? <GettingStarted /> : <ServiceDashboard />;
11+
return chronosSetup.setupRequired ? <AddService /> : <ServiceDashboard />;
1112
};
1213

1314
ReactDOM.render(<App />, document.getElementById('app'));

0 commit comments

Comments
 (0)