-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
35 lines (33 loc) · 786 Bytes
/
App.js
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
34
35
import logo from './logo.svg';
import './App.css';
import SQLFramesApp from './SQLFramesApp';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
<a
className="App-link"
href="https://sqlframes.com"
target="_blank"
rel="noopener noreferrer"
>
Learn SQL Frames
</a>
</header>
<SQLFramesApp/>
</div>
);
}
export default App;