import React from 'react' import Forum from '../components/forum' import styles from './index.module.css' export default function UserForum({ router, globalData, globalState, setGlobalState, }) { const motd = globalData.motd return ( <> {motd && (
MOTD
{motd ? (
) : (
...
)}
)} ) }