mirror of
https://codeberg.org/andyscott/ExerciseTracker.git
synced 2024-12-21 11:43:10 -05:00
Remove id for table
This commit is contained in:
parent
77e1d5176c
commit
a3ef77d503
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ import Exercise from "./Exercise";
|
||||||
|
|
||||||
function ExerciseList({ exercises, onDelete, onEdit }) {
|
function ExerciseList({ exercises, onDelete, onEdit }) {
|
||||||
return (
|
return (
|
||||||
<table id="exercises">
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
|
|
Loading…
Reference in a new issue