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
Today KU
Commits
cb075430
Commit
cb075430
authored
Oct 31, 2021
by
Kim, Subin
Browse files
Todo Weekly 수정 중
parent
bf272410
Changes
2
Hide whitespace changes
Inline
Side-by-side
client/src/components/Calendar/Weekly.js
View file @
cb075430
import
moment
from
'
moment
'
;
import
FullCalendar
from
'
@fullcalendar/react
'
;
import
dayGridPlugin
from
'
@fullcalendar/daygrid
'
;
import
interactionPlugin
from
"
@fullcalendar/interaction
"
;
import
bootstrapPlugin
from
'
@fullcalendar/bootstrap
'
;
import
'
@fortawesome/fontawesome-free/css/all.css
'
;
const
Weekly
=
()
=>
{
return
(
<
FullCalendar
plugins
=
{[
dayGridPlugin
]}
plugins
=
{[
dayGridPlugin
,
interactionPlugin
,
bootstrapPlugin
]}
initialView
=
"
dayGridWeek
"
defaultView
=
"
dayGridWeek
"
headerToolbar
=
{{
start
:
'
prev
'
,
center
:
'
title
'
,
end
:
'
next
'
start
:
'
title
'
,
center
:
''
,
end
:
''
}}
titleFormat
=
{(
date
)
=>
{
if
(
date
.
date
.)
console
.
log
(
"
date==
"
,
date
)
return
date
.
date
.
year
+
"
년
"
+
(
date
.
date
.
month
+
1
)
+
"
월
"
;
}}
/
>
)
...
...
client/src/pages/ToDoPage.js
View file @
cb075430
import
Menu
from
"
../components/Menu/Menu.js
"
;
import
HomeBtn
from
"
../components/Buttons/HomeBtn.js
"
;
import
Weekly
from
"
../components/Calendar/Weekly.js
"
;
import
TodoModal
from
"
../components/Modal/TodoModal.js
"
;
import
TodoPostModal
from
"
../components/Modal/TodoPostModal.js
"
;
import
Footer
from
"
../components/Footer.js
"
;
...
...
@@ -11,9 +12,7 @@ const ToDoPage = () => {
<
Menu
/>
<
HomeBtn
/>
<
h1
className
=
"
text-center
"
>
To
-
do
<
/h1
>
<
div
>
캘린더
자리
<
/div
>
<
Weekly
/>
<
div
className
=
"
d-flex justify-content-between mt-3
"
>
<
div
className
=
"
d-flex align-items-center
"
>
<
input
className
=
{
`form-check-input rounded-0 shadow-none mt-0
${
styles
.
checkBox
}
`
}
type
=
"
checkbox
"
/>
...
...
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