mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
20 lines
349 B
JavaScript
20 lines
349 B
JavaScript
import React from 'react'
|
|
|
|
import Forum from '../components/forum'
|
|
|
|
export default function Index({
|
|
router,
|
|
globalData,
|
|
globalState,
|
|
setGlobalState,
|
|
}) {
|
|
return (
|
|
<Forum
|
|
router={router}
|
|
globalState={globalState}
|
|
setGlobalState={setGlobalState}
|
|
globalData={globalData}
|
|
forumName={'frontpage'}
|
|
/>
|
|
)
|
|
}
|