swapped news and user forum

This commit is contained in:
mrfry 2022-12-04 19:09:43 +01:00
parent cf3edd8976
commit d301bcd17f
8 changed files with 54 additions and 185 deletions

20
src/pages/news.js Normal file
View file

@ -0,0 +1,20 @@
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'}
/>
)
}