diff options
| author | Wolfboy248 <121288977+Wolfboy248@users.noreply.github.com> | 2024-07-10 21:51:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-10 22:51:25 +0300 |
| commit | cfac59282da55f4791d6352f15887a15e9ff6ec5 (patch) | |
| tree | bf8cea62f60f9239073a9cf82648d69d1e6b6a1c /frontend/src/components/main.js | |
| parent | feat: return portal counts for each cat in chapter select (#175) (diff) | |
| download | lphub-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.js | 3 |
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 | ||
| 3 | import "../App.css" | 3 | import "../App.css" |
| 4 | import "./main.css"; | 4 | import "./main.css"; |
| 5 | import { Link } from 'react-router-dom'; | ||
| 5 | 6 | ||
| 6 | export default function Main(props) { | 7 | export default function Main(props) { |
| 7 | 8 | ||
| @@ -9,7 +10,7 @@ export default function Main(props) { | |||
| 9 | return ( | 10 | return ( |
| 10 | <main> | 11 | <main> |
| 11 | <h1>{props.text}</h1> | 12 | <h1>{props.text}</h1> |
| 12 | </main> | 13 | </main> |
| 13 | ) | 14 | ) |
| 14 | } | 15 | } |
| 15 | 16 | ||