mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-11 13:13:25 +00:00
adding to prev commit
This commit is contained in:
@@ -2,6 +2,8 @@
|
|||||||
"extends": ["next/core-web-vitals", "next/typescript"],
|
"extends": ["next/core-web-vitals", "next/typescript"],
|
||||||
"rules": {
|
"rules": {
|
||||||
"@next/next/no-img-element": "off",
|
"@next/next/no-img-element": "off",
|
||||||
"@typescript-eslint/no-explicit-any": "off"
|
"@typescript-eslint/no-explicit-any": "off",
|
||||||
|
"@typescript-eslint/no-empty-object-type": "off",
|
||||||
|
"@typescript-eslint/no-unused-vars": "off"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,3 +16,10 @@ const EventPage = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export default EventPage;
|
export default EventPage;
|
||||||
|
|
||||||
|
// profile page
|
||||||
|
|
||||||
|
// EventForm to Register Events
|
||||||
|
// on submit form
|
||||||
|
// fix ui to match ticketchain initial ui
|
||||||
|
//
|
||||||
|
|||||||
7
components/ProfilePage.tsx
Normal file
7
components/ProfilePage.tsx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
const ProfilePage = () => {
|
||||||
|
return <div>ProfilePage</div>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ProfilePage;
|
||||||
Reference in New Issue
Block a user