This commit is contained in:
Андрей Дувакин 2024-10-05 13:46:13 +05:00
parent a6f9918c43
commit a718b5a8b1
4 changed files with 0 additions and 8 deletions

View File

@ -223,7 +223,6 @@ const Accessories = () => {
<table className="table table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Название</th>
<th>Объем</th>
<th>Вес</th>
@ -235,7 +234,6 @@ const Accessories = () => {
<tbody>
{accessories.map((accessory) => (
<tr key={accessory.id}>
<td>{accessory.id}</td>
<td>{accessory.name}</td>
<td>{accessory.volume}</td>
<td>{accessory.weight}</td>

View File

@ -173,7 +173,6 @@ const Cities = () => {
<table className="table table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Название</th>
<th>Федеральный округ</th>
<th>Действия</th>
@ -182,7 +181,6 @@ const Cities = () => {
<tbody>
{cities.map((city) => (
<tr key={city.id}>
<td>{city.id}</td>
<td>{city.name}</td>
<td>{city.federal_district_name}</td>
<td>

View File

@ -125,7 +125,6 @@ const FederalDistricts = () => {
<table className="table table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Название</th>
<th>Действия</th>
</tr>
@ -133,7 +132,6 @@ const FederalDistricts = () => {
<tbody>
{districts.map((district) => (
<tr key={district.id}>
<td>{district.id}</td>
<td>{district.name}</td>
<td>
<div className="btn-group">

View File

@ -117,7 +117,6 @@ const Roles = () => {
<table className="table table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Название</th>
<th>Действия</th>
</tr>
@ -125,7 +124,6 @@ const Roles = () => {
<tbody>
{roles.map((role) => (
<tr key={role.id}>
<td>{role.id}</td>
<td>{role.name}</td>
<td>
<div className="btn-group">