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.
17 lines (14 loc) • 382 B
text/typescript
// types
interface Types {
labels: any
datasets: any
}
const defaultDoughnutChartData: Types = {
labels: ["Company Juice", "Github", "Bootsnipp", "Dev.to", "Codeinwp"],
datasets: {
label: "Projects",
backgroundColors: ["info", "dark", "error", "secondary", "primary"],
data: [15, 20, 12, 60, 20],
},
}
export default defaultDoughnutChartData