Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
students
survey
Commits
7fd500b1
Commit
7fd500b1
authored
Jul 25, 2022
by
Lee SeoYeon
Browse files
설문조사 제출 컴포넌트
parent
a4fca0c8
Changes
1
Show whitespace changes
Inline
Side-by-side
frontend/src/survey/CompleteSurvey.tsx
0 → 100644
View file @
7fd500b1
import
React
from
"
react
"
;
import
{
useNavigate
}
from
"
react-router-dom
"
;
export
const
CompleteSurvey
=
()
=>
{
const
navigate
=
useNavigate
();
return
(
<
div
className
=
"flex flex-col place-items-center mt-24"
>
<
div
className
=
"flex flex-col container place-items-center place-content-center space-y-5 space-x-2 w-full h-56"
>
<
p
className
=
"text-3xl font-bold"
>
설문조사가 제출되었습니다
</
p
>
<
p
>
응답이 완료되었습니다
</
p
>
<
button
className
=
"flex place-content-start rounded-lg bg-themeColor w-20 h-10 text-center py-2 px-4 text-white"
type
=
"button"
onClick
=
{
()
=>
navigate
(
"
/
"
)
}
>
홈으로
</
button
>
</
div
>
</
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