mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 12:58:35 +03:00
* abstract Space component to switch out Map * basic viewing possible * restructure components dir * all jsx --> js * App.jsx --> App.js * comment out 3d for now
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
import "../scss/main.scss";
|
|
import React from "react";
|
|
import Layout from "./Layout";
|
|
|
|
class App extends React.Component {
|
|
render() {
|
|
return <Layout />;
|
|
}
|
|
}
|
|
|
|
export default App;
|