Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
travel
Commits
364a26e5
Commit
364a26e5
authored
Jun 29, 2022
by
Kim, MinGyu
Browse files
trash no merge
parent
5b52324d
Changes
2
Hide whitespace changes
Inline
Side-by-side
frontend/src/Pages/signup.tsx
View file @
364a26e5
...
...
@@ -2,6 +2,9 @@ import React from "react";
export
default
function
Signup
()
{
return
(
<
div
>
signup page
</
div
>
// Signup Page
<
div
>
signup page
</
div
>
// Signup Page
);
}
\ No newline at end of file
frontend/src/pages/board.tsx
View file @
364a26e5
...
...
@@ -7,7 +7,7 @@ function range(start:number, end:number) {
}
export
default
function
BoardPage
()
{
const
imgs
=
range
(
0
,
7
);
//[1,2,3,4,5,6,7]
const
imgs
=
range
(
1
,
8
);
//[1,2,3,4,5,6,7]
return
(
<
div
className
=
"flex flex-col items-center"
>
<
div
className
=
"flex flex-col items-center mt-6"
>
...
...
@@ -24,8 +24,8 @@ export default function BoardPage() {
Board
</
div
>
<
div
>
{
imgs
.
map
(
img
=>
(
<
div
className
=
"flex flex-row h-16 divide-x-2 border-2 border-solid "
>
{
imgs
.
map
(
(
img
,
index
)
=>
(
<
div
key
=
{
index
}
className
=
"flex flex-row h-16 divide-x-2 border-2 border-solid "
>
<
div
className
=
"basis-1/12 bg-gray-100"
>
{
img
}
</
div
>
<
div
className
=
"basis-full"
>
title
</
div
>
<
div
className
=
"basis-3/12"
>
date
</
div
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment