aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/App.js
blob: 73ec59eebfa229e9ae2d431a8ed849398599a48c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import './App.css';
import SECAPIData from "./SECAPIData";

/*
App is the main react component that contains all the other maps components
*/

function App() {

  return (
      <div className="App">
        <SECAPIData></SECAPIData>
      </div>
  );
}

export default App;