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.
19 lines (16 loc) • 339 B
text/typescript
// types
interface Types {
labels: any
datasets: any
}
const verticalBarChartData: Types = {
labels: ["16-20", "21-25", "26-30", "31-36", "36-42", "42+"],
datasets: [
{
label: "Sales by age",
color: "dark",
data: [15, 20, 12, 60, 20, 15],
},
],
}
export default verticalBarChartData