Skip to content
Snippets Groups Projects
Select Git revision
  • 2d2c05e46a7b40589492c2571dade0e2150c1f82
  • main default protected
2 results

Dijkstra.jsx

Blame
  • Forked from SOFT Core / SOFT 260 / React Redux Starter Code
    1 commit ahead of the upstream repository.
    user avatar
    gseagren2 authored
    First version is done.
    2d2c05e4
    History
    Dijkstra.jsx 261 B
    import React from 'react';
    
    const Dijkstra = () =>
      <div>
        <h1>Dijkstra's Algorithm</h1>
        <p>This is where you can visualize Dijkstra's algorithm.</p>
        {/* Add your graph visualizer or algorithm logic here */}
      </div>
        ;
    
    export default Dijkstra;