mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
29 lines
647 B
JavaScript
29 lines
647 B
JavaScript
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>
|
|
)
|
|
}
|