dijkstra-frontend/src/App.js

14 lines
308 B
JavaScript
Raw Normal View History

import React, { useEffect } from 'react';
import { Layout } from 'antd';
2020-02-09 11:09:49 +00:00
function App() {
return (
<Layout>
<h1>Dijkstra</h1>
<p>Dijkstra is an app thas uses Dijkstra algorithm to display the shortest path between different cities in Belgium.</p>
</Layout>
2020-02-09 11:09:49 +00:00
);
}
export default App;