react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
65 lines (55 loc) • 1.09 kB
text/typescript
// types
interface Types {
[key: string]: any
}
const calendarEventsData: Types[] = [
{
title: "All day conference",
start: "2022-08-01",
end: "2022-08-01",
className: "success",
},
{
title: "Meeting with Mary",
start: "2022-08-03",
end: "2022-08-03",
className: "info",
},
{
title: "Cyber Week",
start: "2022-08-04",
end: "2022-08-04",
className: "warning",
},
{
title: "Winter Hackaton",
start: "2022-08-05",
end: "2022-08-05",
className: "error",
},
{
title: "Digital event",
start: "2022-08-09",
end: "2022-08-11",
className: "warning",
},
{
title: "Marketing event",
start: "2022-08-12",
end: "2022-08-12",
className: "primary",
},
{
title: "Dinner with Family",
start: "2022-08-21",
end: "2022-08-21",
className: "error",
},
{
title: "Black Friday",
start: "2022-08-25",
end: "2022-08-25",
className: "info",
},
]
export default calendarEventsData