Skip to content

Commit

Permalink
Update SelectionSortVisualizer.js
Browse files Browse the repository at this point in the history
Signed-off-by: ANANYA GUPTA <[email protected]>
  • Loading branch information
ananya8606 authored Oct 21, 2024
1 parent a408fc6 commit e4c536e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ function SelectionSortVisualizer() {
};

return (
<div>
<section className="head">Selection Sort</section>
<div className="visualizer-body">
<section className="visualizer-head">Selection Sort</section>
<div id="input-visualizer">
{arr.map((value, index) => (
<div key={index}>{value}</div>
))}
</div>
<div className="container">
<div className="visualizer-input-container">
<input
type="number"
className="input-field"
Expand Down

0 comments on commit e4c536e

Please sign in to comment.