aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Games.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/pages/Games.tsx')
-rw-r--r--frontend/src/pages/Games.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/pages/Games.tsx b/frontend/src/pages/Games.tsx
index 15105c9..e7e031e 100644
--- a/frontend/src/pages/Games.tsx
+++ b/frontend/src/pages/Games.tsx
@@ -25,7 +25,7 @@ const Games: React.FC<GamesProps> = ({ games }) => {
25 }, []); 25 }, []);
26 26
27 return ( 27 return (
28 <div className='games-page'> 28 <main>
29 <section> 29 <section>
30 <div className='games-page-content'> 30 <div className='games-page-content'>
31 <div className='games-page-item-content'> 31 <div className='games-page-item-content'>
@@ -35,7 +35,7 @@ const Games: React.FC<GamesProps> = ({ games }) => {
35 </div> 35 </div>
36 </div> 36 </div>
37 </section> 37 </section>
38 </div> 38 </main>
39 ); 39 );
40}; 40};
41 41