12 lines
204 B
TypeScript
12 lines
204 B
TypeScript
import { TextCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function Forum() {
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
<TextCustom>Forum</TextCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|