mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-10 12:28:38 +03:00
17 lines
241 B
JavaScript
17 lines
241 B
JavaScript
import '../scss/main.scss';
|
|
import React from 'react';
|
|
import Dashboard from './Dashboard.jsx';
|
|
|
|
class App extends React.Component {
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
<Dashboard />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default App;
|