We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 618a865 commit a134527Copy full SHA for a134527
1 file changed
app/index.js
@@ -2,12 +2,13 @@ import React, { useContext } from 'react';
2
import ReactDOM from 'react-dom';
3
import SetupContext from './context/SetupContext.js';
4
import './index.css';
5
-import GettingStarted from './components/GettingStarted.jsx';
+// import GettingStarted from './components/GettingStarted.jsx';
6
+import AddService from './components/AddService.jsx'
7
import ServiceDashboard from './components/ServicesDashboard.jsx';
8
9
const App = () => {
10
const chronosSetup = useContext(SetupContext);
- return chronosSetup.setupRequired ? <GettingStarted /> : <ServiceDashboard />;
11
+ return chronosSetup.setupRequired ? <AddService /> : <ServiceDashboard />;
12
};
13
14
ReactDOM.render(<App />, document.getElementById('app'));
0 commit comments