dijkstra-frontend/src/App.js

14 lines
308 B
JavaScript

import React, { useEffect } from 'react';
import { Layout } from 'antd';
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>
);
}
export default App;