dijkstra-frontend/src/App.js

13 lines
163 B
JavaScript
Raw Normal View History

import React from 'react';
import HomeView from './components/HomeView';
2020-02-09 11:09:49 +00:00
function App() {
return (
2020-02-10 02:09:47 +00:00
<>
<HomeView/>
2020-02-10 02:09:47 +00:00
</>
2020-02-09 11:09:49 +00:00
);
}
export default App;