Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian-Pob committed Apr 29, 2023
1 parent d4f9043 commit ed8d19a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions frontend/src/screens/ProductListScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const ProductListScreen = ({ history, match }) => {

return (
<>

<Row className='align-items-center'>
<Col>
<h1>Products</h1>
Expand All @@ -82,6 +83,9 @@ const ProductListScreen = ({ history, match }) => {
</Button>
</Col>
</Row>



{loadingDelete && <Loader />}
{errorDelete && <Message variant='danger'>{errorDelete}</Message>}
{loadingCreate && <Loader />}
Expand Down Expand Up @@ -132,6 +136,8 @@ const ProductListScreen = ({ history, match }) => {
<Paginate pages={pages} page={page} isAdmin={true} />
</>
)}


</>
)
}
Expand Down

0 comments on commit ed8d19a

Please sign in to comment.