dijkstra-frontend/src/App.js

17 lines
356 B
JavaScript

import React from 'react';
import { Layout } from 'antd';
import HomeView from './components/HomeView';
import 'antd/dist/antd.css';
function App() {
return (
<Layout>
<h1>Dijkstra</h1>
<p>Find the shortest path between different cities in Belgium with Dijkstra algorithm.</p>
<HomeView/>
</Layout>
);
}
export default App;