Skip to content

Commit d28eed0

Browse files
authored
Merge pull request #6 from amrita019/create-services
Add forms for creating different services and their API endpoint
2 parents a179daf + 8259be9 commit d28eed0

File tree

16 files changed

+1454
-227
lines changed

16 files changed

+1454
-227
lines changed

client/src/App/App.js

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { SignupPage } from "../SignupPage/SignupPage.js";
1111
import { VirtualMachine } from "../CreateAzureServices/VirtualMachine.js";
1212
import { VirtualNetwork } from "../CreateAzureServices/VirtualNetwork.js";
1313
import { Database } from "../CreateAzureServices/Database.js";
14+
import { Security } from "../CreateAzureServices/Security.js";
1415
import { PageNotFound } from "../_helpers/PageNotFound.js";
1516

1617
class App extends React.Component {
@@ -40,6 +41,7 @@ class App extends React.Component {
4041
<Route path="/virtualmachines" component={VirtualMachine} />
4142
<Route path="/virtualnetworks" component={VirtualNetwork} />
4243
<Route path="/database" component={Database} />
44+
<Route path="/security" component={Security} />
4345
<Route component={PageNotFound} />
4446
</Switch>
4547
</Router>

0 commit comments

Comments
 (0)