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.
83 lines (80 loc) • 2.6 kB
text/typescript
// types
interface Types {
[key: string]: any
}
const timelineData: Types[] = [
{
color: "success",
icon: "notifications",
title: "$2400, Design changes",
dateTime: "22 DEC 7:20 PM",
description:
"People care about how you see the world, how you think, what motivates you, what you’re struggling with or afraid of.",
},
{
color: "error",
icon: "inventory_2",
title: "New order #1832412",
dateTime: "21 DEC 11 PM",
description:
"People care about how you see the world, how you think, what motivates you, what you’re struggling with or afraid of.",
},
{
color: "info",
icon: "shopping_cart",
title: "Server payments for April",
dateTime: "21 DEC 9:34 PM",
description:
"People care about how you see the world, how you think, what motivates you, what you’re struggling with or afraid of.",
},
{
color: "warning",
icon: "payment",
title: "New card added for order #4395133",
dateTime: "20 DEC 2:20 AM",
description:
"People care about how you see the world, how you think, what motivates you, what you’re struggling with or afraid of.",
},
{
color: "primary",
icon: "vpn_key",
title: "Unlock packages for development",
dateTime: "18 DEC 4:54 AM",
description:
"People care about how you see the world, how you think, what motivates you, what you’re struggling with or afraid of.",
},
{
color: "success",
icon: "inbox",
title: "New message unread",
dateTime: "16 DEC",
description:
"People care about how you see the world, how you think, what motivates you, what you’re struggling with or afraid of.",
},
{
color: "info",
icon: "campaign",
title: "Notifications unread",
dateTime: "15 DEC",
description:
"People care about how you see the world, how you think, what motivates you, what you’re struggling with or afraid of.",
},
{
color: "warning",
icon: "archive",
title: "New request",
dateTime: "14 DEC",
description:
"People care about how you see the world, how you think, what motivates you, what you’re struggling with or afraid of.",
},
{
color: "secondary",
icon: "sports_esports",
title: "Controller issues",
dateTime: "13 DEC",
description:
"People care about how you see the world, how you think, what motivates you, what you’re struggling with or afraid of.",
lastItem: true,
},
]
export default timelineData