diff --git a/frontend/components/board/BoardCenter.js b/frontend/components/board/BoardCenter.js new file mode 100644 index 0000000..b62d86c --- /dev/null +++ b/frontend/components/board/BoardCenter.js @@ -0,0 +1,8 @@ +//게시판 위, 중앙에 사진 및 제목 등 + +export default function BoardCenter() { + return ( + <> + > + ) +} \ No newline at end of file diff --git a/frontend/components/board/BoardMiniView.js b/frontend/components/board/BoardMiniView.js new file mode 100644 index 0000000..454dcf0 --- /dev/null +++ b/frontend/components/board/BoardMiniView.js @@ -0,0 +1,77 @@ +//id별 네모네모하게 제목이랑 안에 글들 보여주는 것 + +export default function BoardMiniView(props) { + return ( + <> + {/* type:string 에 따라 백에서 다른 값 받아옴. */} + +
+ {`${props.type} 게시판`}+ |
+
---|
+
+ 게시글 제목 1
+ n분 전
+
+ |
+
+
+ 게시글 제목 2
+ n분 전
+
+ |
+
+
+ 게시글 제목 3
+ n분 전
+
+ |
+
+
+ 게시글 제목 4
+ n분 전
+
+ |
+
+
+ 게시글 제목 5
+ n분 전
+
+ |
+