forked from JarodAerts-Microsoft/ReactSite
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathApp.js
More file actions
33 lines (30 loc) · 757 Bytes
/
Copy pathApp.js
File metadata and controls
33 lines (30 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React from 'react';
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Look at this really cool spinny thing we have here. Hi Kelcy!
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Everything is fine.
</a>
<a
className="App-link"
href="https://cerulean-iguana-839.azurestaticwebsites.net/.auth/login/aad"
>
Log in with Azure AD
</a>
</header>
</div>
);
}
export default App;