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
Today KU
Commits
6b31e9d7
Commit
6b31e9d7
authored
Oct 12, 2021
by
Kim, Subin
Browse files
BtnGroup 생성
parent
1d1194ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
client/src/components/Buttons/BtnGroup.js
0 → 100644
View file @
6b31e9d7
import
{
useHistory
}
from
"
react-router-dom
"
;
const
BtnGroup
=
()
=>
{
const
history
=
useHistory
();
return
(
<
div
className
=
"
d-flex justify-content-around my-4
"
>
<
button
className
=
"
btn btn-white col-4 shadow-none border-dark
"
type
=
"
button
"
onClick
=
{()
=>
history
.
goBack
()}
>
취소
<
/button
>
<
button
className
=
"
btn btn-crimson col-4
"
type
=
"
submit
"
>
확인
<
/button
>
<
/div
>
)
}
export
default
BtnGroup
\ No newline at end of file
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