From f58dfd1330d3066f7ec71dd3c92a1809566f7b41 Mon Sep 17 00:00:00 2001 From: Kuamr Shubham Date: Sun, 17 May 2020 15:12:52 +0530 Subject: [PATCH] Shubham | Add integrate application with okta --- src/App.tsx | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 8a0b0ee..8d3cdec 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,32 @@ import * as React from 'react'; import logo from './logo.svg'; import './App.css'; import Form from "./components/manifest/Form"; +import ShowDeploymentManifest from "./components/manifest/ShowDeploymentManifest"; +import {Route} from 'react-router'; +import {BrowserRouter as Router} from 'react-router-dom'; +import {Security, LoginCallback, SecureRoute} from '@okta/okta-react'; + +const config = { + issuer: 'https://navi-2020.okta.com', + redirectUri: window.location.origin+'/implicit/callback', + responseType: 'id_token', + scope: 'openid groups', + clientId: "0oaa0a9up1F7lQc5A4x6", +}; function App() { return (
-
+ + + + + + + + + +
); }