dijkstra-frontend/src/App.js

17 lines
386 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>Dijkstra is an app thas uses Dijkstra algorithm to display the shortest path between different cities in Belgium.</p>
<HomeView/>
</Layout>
);
}
export default App;