Skip to content

Commit

Permalink
[#13] Feat informationPage - 스케쥴러 데이터 형식 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ppacman committed Apr 12, 2023
1 parent 178d51e commit 462a5f2
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions src/components/infoPage/components/Scheduler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,65 +106,65 @@ const Scheduler = () => {
view={calView}
data={[
{
id: "hyoseong",
start: "2023-03-24T08:00:00.000Z",
end: "2023-03-24T17:00:00.000Z",
name: "hyoseong",
start: "2023-04-03T08:00",
end: "2023-04-03T17:00",
title: "이것저것 합니다..",
color: "#328e39",
cssClass: state.hyoseong ? "" : "active",
},
{
id: "hyoseong",
start: "2023-03-20T08:00:00.000Z",
end: "2023-03-20T13:00:00.000Z",
name: "hyoseong",
start: "2023-04-04T08:00:00.000Z",
end: "2023-04-04T13:00:00.000Z",
title: "이것저것 합니다..",
color: "#328e39",
cssClass: state.hyoseong ? "" : "active",
},
{
id: "geumju",
start: "2023-03-20T08:00:00.000Z",
end: "2023-03-20T17:00:00.000Z",
name: "geumju",
start: "2023-04-04T08:00:00.000Z",
end: "2023-04-04T17:00:00.000Z",
title: "이것저것 합니다..",
color: "#00aabb",
cssClass: state.geumju ? "" : "active",
},
{
id: "geumju",
start: "2023-03-21T08:00:00.000Z",
end: "2023-03-21T13:00:00.000Z",
name: "geumju",
start: "2023-04-05T08:00:00.000Z",
end: "2023-04-05T13:00:00.000Z",
title: "이것저것 합니다..",
color: "#00aabb",
cssClass: state.geumju ? "" : "active",
},
{
id: "cheongjo",
start: "2023-03-21T08:00:00.000Z",
end: "2023-03-21T17:00:00.000Z",
name: "cheongjo",
start: "2023-04-05T08:00:00.000Z",
end: "2023-04-05T17:00:00.000Z",
title: "이것저것 합니다..",
color: " #ea72c0",
cssClass: state.cheongjo ? "" : "active",
},
{
id: "cheongjo",
start: "2023-03-22T17:00:00.000Z",
end: "2023-03-22T22:00:00.000Z",
name: "cheongjo",
start: "2023-04-06T17:00:00.000Z",
end: "2023-04-06T22:00:00.000Z",
title: "이것저것 합니다..",
color: " #ea72c0",
cssClass: state.cheongjo ? "" : "active",
},
{
id: "haeyeon",
start: "2023-03-22T08:00:00.000Z",
end: "2023-03-22T17:00:00.000Z",
name: "haeyeon",
start: "2023-04-06T08:00:00.000Z",
end: "2023-04-06T17:00:00.000Z",
title: "이것저것 합니다..",
color: " #eae125",
cssClass: state.haeyeon ? "" : "active",
},
{
id: "junhyung",
start: "2023-03-23T08:00:00.000Z",
end: "2023-03-23T17:00:00.000Z",
name: "junhyung",
start: "2023-04-07T08:00:00.000Z",
end: "2023-04-07T17:00:00.000Z",
title: "이것저것 합니다..",
color: " #adf123",
cssClass: state.junhyung ? "" : "active",
Expand Down

0 comments on commit 462a5f2

Please sign in to comment.