forked from NextGraph/nextgraph-rs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
462 B
22 lines
462 B
|
|
import React, { FunctionComponent } from 'react';
|
|
import { Header } from './Header';
|
|
import { Contacts } from './Contacts';
|
|
import { BrowserNGLdoProvider } from './reactMethods';
|
|
|
|
import './App.css'
|
|
import "../../../common/src/styles.css";
|
|
|
|
const App: FunctionComponent = () => {
|
|
|
|
return (
|
|
<div className="App">
|
|
<BrowserNGLdoProvider>
|
|
<Header />
|
|
<Contacts />
|
|
</BrowserNGLdoProvider>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App
|
|
|