Skip to content

Commit fcd8301

Browse files
committed
Update package.json
1 parent a0837cf commit fcd8301

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "react-profiles",
3-
"version": "1.0.0",
2+
"name": "@mdbootstrap/react-profiles",
3+
"version": "1.0.2",
44
"description": "Responsive Profiles built with Bootstrap 5. Lots of templates such as card profile, user profile, profile form, with followers, avatars, comments, stats, social media and many more.",
55
"private": false,
66
"bugs": {

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function App() {
1515
eCommerce profile card
1616
</MDBBtn>
1717
</Link>
18-
<Link to="/user-profile">
18+
<Link to="/profile-page">
1919
<MDBBtn className="m-2">
2020
User profile page template
2121
</MDBBtn>

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { BrowserRouter, Route, Routes } from 'react-router-dom';
77

88
import App from './App';
99
import ECommerce from './ecommerce/ECommerce';
10-
import UserProfile from './userProfile/UserProfile';
10+
import ProfilePage from './profilePage/ProfilePage';
1111
import AttendingUsers from './attendingUsers/AttendingUsers';
1212
import PersonalProfile from './personalProfile/PersonalProfile';
1313
import EditButton from './editButton/EditButton';
@@ -23,7 +23,7 @@ root.render(
2323
<Route path="/" element={<App />} />
2424
<Route path="/basic" element={<Basic />} />
2525
<Route path="/ecommerce" element={<ECommerce />} />
26-
<Route path="/user-profile" element={<UserProfile />} />
26+
<Route path="/profile-page" element={<ProfilePage />} />
2727
<Route path="/attending-users" element={<AttendingUsers />} />
2828
<Route path="/personal-profile" element={<PersonalProfile />} />
2929
<Route path="/edit-button" element={<EditButton />} />

src/userProfile/UserProfile.js renamed to src/profilePage/ProfilePage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
MDBListGroupItem
1818
} from 'mdb-react-ui-kit';
1919

20-
export default function UserProfile() {
20+
export default function ProfilePage() {
2121
return (
2222
<section style={{ backgroundColor: '#eee' }}>
2323
<MDBContainer className="py-5">

0 commit comments

Comments
 (0)