From d9c7197d577298e0f33bc9817b6da2dbd53a5db4 Mon Sep 17 00:00:00 2001 From: Rupa-Rd Date: Sun, 10 Mar 2024 17:20:58 +0530 Subject: [PATCH] Initial commit --- open-source-galaxy/src/index.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 open-source-galaxy/src/index.js diff --git a/open-source-galaxy/src/index.js b/open-source-galaxy/src/index.js new file mode 100644 index 0000000..39a41bc --- /dev/null +++ b/open-source-galaxy/src/index.js @@ -0,0 +1,32 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; +import { Auth0Provider } from '@auth0/auth0-react'; + + +const root = ReactDOM.createRoot(document.getElementById('root')); +// root.render( +// +// +// + +// ); +const domain = process.env.REACT_APP_AUTH0_DOMAIN; +const clientId = process.env.REACT_APP_AUTH0_CLIENT_ID; + root.render( + + + , + ); +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals();