diff options
Diffstat (limited to 'src/web/components/forum/Forum.jsx')
| -rw-r--r-- | src/web/components/forum/Forum.jsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/web/components/forum/Forum.jsx b/src/web/components/forum/Forum.jsx new file mode 100644 index 0000000..eed0fe9 --- /dev/null +++ b/src/web/components/forum/Forum.jsx @@ -0,0 +1,14 @@ +import React from "react"; + +import Posts from "components/posts/Posts.jsx"; +import Comments from "components/comments/Comments.jsx"; +import styles from "./Forum.css"; + +export default function Forum() { + return ( + <div className={styles.container}> + <Posts /> + <Comments /> + </div> + ); +}
\ No newline at end of file |
