mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Mobile layout fixes, added user forum, modal scroll fix
This commit is contained in:
parent
a8ec93a685
commit
9c333008c7
12 changed files with 649 additions and 428 deletions
src/pages
29
src/pages/userForum.js
Normal file
29
src/pages/userForum.js
Normal file
|
@ -0,0 +1,29 @@
|
|||
import React from 'react'
|
||||
|
||||
import Forum from '../components/forum'
|
||||
|
||||
import styles from './userForum.module.css'
|
||||
|
||||
export default function UserForum({
|
||||
router,
|
||||
globalData,
|
||||
globalState,
|
||||
setGlobalState,
|
||||
}) {
|
||||
return (
|
||||
<Forum
|
||||
allowPost
|
||||
router={router}
|
||||
globalState={globalState}
|
||||
setGlobalState={setGlobalState}
|
||||
globalData={globalData}
|
||||
forumName={'userForum'}
|
||||
>
|
||||
<div className={styles.topMsg}>
|
||||
<div className={styles.title}>Felhasználói fórum</div>
|
||||
Itt lehet témákat felvetni és megbeszélni a többi felhasználóval, vagy
|
||||
adminnal.
|
||||
</div>
|
||||
</Forum>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue