33 lines
831 B
JavaScript
33 lines
831 B
JavaScript
import React from 'react';
|
|
|
|
import DataBus from 'components/dataBus/DataBusContainer';
|
|
import ViewsSwitches from 'components/controls/ViewSwitches/ViewSwitchesContainer';
|
|
import TreeDiagram from 'components/treeDiagram/TreeDiagramContainer';
|
|
import SideBar from 'components/sideBar/SideBarContainer';
|
|
import TopBar from 'components/topBar/TopBarContainer';
|
|
|
|
import './App.scss';
|
|
|
|
const App = () => {
|
|
return (
|
|
<div className="App">
|
|
<header className="header">
|
|
<DataBus />
|
|
<ViewsSwitches />
|
|
<TopBar />
|
|
</header>
|
|
|
|
<div className="body">
|
|
<TreeDiagram />
|
|
<SideBar />
|
|
</div>
|
|
|
|
<footer className="footer">
|
|
Bohdan Liashenko <a href="https://github.com/Bogdan-Lyashenko/codecrumbs">Project Github</a>
|
|
</footer>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|