Skip to content

Commit

Permalink
Fix deploy add EmptyComponent
Browse files Browse the repository at this point in the history
Page Without Valid React Component
  • Loading branch information
Faelayis committed Mar 16, 2024
1 parent 2a24596 commit d1f4f3a
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Client/src/pages/tournaments/alltoru.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const EmptyComponent = () => {
return null;
};

export default EmptyComponent;
5 changes: 5 additions & 0 deletions Client/src/pages/tournaments/comingtoru.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const EmptyComponent = () => {
return null;
};

export default EmptyComponent;
5 changes: 5 additions & 0 deletions Client/src/pages/tournaments/endtoru.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const EmptyComponent = () => {
return null;
};

export default EmptyComponent;
5 changes: 5 additions & 0 deletions Client/src/pages/tournaments/intour.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const EmptyComponent = () => {
return null;
};

export default EmptyComponent;
5 changes: 5 additions & 0 deletions Client/src/pages/tournaments/opentoru.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const EmptyComponent = () => {
return null;
};

export default EmptyComponent;

0 comments on commit d1f4f3a

Please sign in to comment.