53 lines
713 B
TypeScript
53 lines
713 B
TypeScript
/* Use this mock data to showcase your components in the playground,
|
|
* or add your own data that fits your component's props
|
|
*/
|
|
export const mockCategoricalData = [
|
|
{
|
|
key: "Roboto",
|
|
value: 88,
|
|
},
|
|
{
|
|
key: "Open Sans",
|
|
value: 16,
|
|
},
|
|
{
|
|
key: "Lato",
|
|
value: 14,
|
|
},
|
|
{
|
|
key: "Montserrat",
|
|
value: 73,
|
|
},
|
|
{
|
|
key: "Oswald",
|
|
value: 14,
|
|
},
|
|
{
|
|
key: "Source Sans Pro",
|
|
value: 8,
|
|
},
|
|
{
|
|
key: "Slabo 27px",
|
|
value: 41,
|
|
},
|
|
{
|
|
key: "Raleway",
|
|
value: 29,
|
|
},
|
|
];
|
|
|
|
export const mockPieData = [
|
|
{
|
|
category: "Nightingale",
|
|
value: 42,
|
|
},
|
|
{
|
|
category: "Quail",
|
|
value: 48,
|
|
},
|
|
{
|
|
category: "Cuckoo",
|
|
value: 10,
|
|
},
|
|
];
|