dijkstra-frontend/src/App.js

17 lines
356 B
JavaScript
Raw Normal View History

import React from 'react';
import { Layout } from 'antd';
import HomeView from './components/HomeView';
import 'antd/dist/antd.css';
2020-02-09 11:09:49 +00:00
function App() {
return (
<Layout>
<h1>Dijkstra</h1>
2020-02-09 23:12:39 +00:00
<p>Find the shortest path between different cities in Belgium with Dijkstra algorithm.</p>
<HomeView/>
</Layout>
2020-02-09 11:09:49 +00:00
);
}
export default App;