-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ft user edit profile 187584875 (#45)
* [starts #187900329] Start User-view-single-product * [start #1879003229] user view & edit profile * [start 187584875] user profile view and update * [starts #187900329] Start User-view-single-product * add functionalities * Added layout * Added single asset view * added styling * added-styling * added-stylings * [starts #187900329] Start User-view-single-product * add functionalities * Added layout * added styling * added-styling * added-stylings * [finishes 187584875] user profile vew and edit * [start 187584875]finished ft-user-edit-profile-187584875 * [deliver 187584875] user edit profile * [deliver 187584875] user edit profile * [deliver 187584875] user edit profile --------- Co-authored-by: ProgrammerDATCH <[email protected]>
- Loading branch information
1 parent
3097f24
commit 1cd4e09
Showing
31 changed files
with
22,698 additions
and
123 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* eslint-disable */ | ||
import React from 'react' | ||
import { Outlet } from 'react-router-dom' | ||
import Header from './components/layout/Header' | ||
import Footer from './components/layout/Footer' | ||
|
||
const User = () => { | ||
return ( | ||
<> | ||
<Header /> | ||
<Outlet /> | ||
<Footer /> | ||
</> | ||
|
||
|
||
) | ||
} | ||
|
||
export default User |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ | |
|
||
max-width: 100%; | ||
max-height: 100%; | ||
|
||
.seller-product-header { | ||
display: flex; | ||
flex-direction: row; | ||
|
Oops, something went wrong.