aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/main.js
diff options
context:
space:
mode:
authorWolfboy248 <121288977+Wolfboy248@users.noreply.github.com>2024-07-10 21:51:25 +0200
committerGitHub <noreply@github.com>2024-07-10 22:51:25 +0300
commitcfac59282da55f4791d6352f15887a15e9ff6ec5 (patch)
treebf8cea62f60f9239073a9cf82648d69d1e6b6a1c /frontend/src/components/main.js
parentfeat: return portal counts for each cat in chapter select (#175) (diff)
downloadlphub-cfac59282da55f4791d6352f15887a15e9ff6ec5.tar.gz
lphub-cfac59282da55f4791d6352f15887a15e9ff6ec5.tar.bz2
lphub-cfac59282da55f4791d6352f15887a15e9ff6ec5.zip
Games page, maplist page (#153)
Co-authored-by: Wolfboy248 <105884620+Wolfboy248@users.noreply.github.com>
Diffstat (limited to '')
-rw-r--r--frontend/src/components/main.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/components/main.js b/frontend/src/components/main.js
index 18b0f5a..b359105 100644
--- a/frontend/src/components/main.js
+++ b/frontend/src/components/main.js
@@ -2,6 +2,7 @@ import React from 'react';
2 2
3import "../App.css" 3import "../App.css"
4import "./main.css"; 4import "./main.css";
5import { Link } from 'react-router-dom';
5 6
6export default function Main(props) { 7export default function Main(props) {
7 8
@@ -9,7 +10,7 @@ export default function Main(props) {
9return ( 10return (
10 <main> 11 <main>
11 <h1>{props.text}</h1> 12 <h1>{props.text}</h1>
12 </main> 13 </main>
13 ) 14 )
14} 15}
15 16