cs-2022-class-profile/data/mocks.ts

38 lines
572 B
TypeScript
Raw Normal View History

2022-06-03 02:15:22 -04:00
/* Use this mock data to showcase your components in the playground,
2022-06-03 02:11:48 -04:00
* or add your own data that fits your component's props
*/
export const mockCategoricalData = [
{
category: "Roboto",
2022-06-03 02:11:48 -04:00
value: 88,
},
{
category: "Open Sans",
2022-06-03 02:11:48 -04:00
value: 16,
},
{
category: "Lato",
2022-06-03 02:11:48 -04:00
value: 14,
},
{
category: "Montserrat",
2022-06-03 02:11:48 -04:00
value: 73,
},
{
category: "Oswald",
2022-06-03 02:11:48 -04:00
value: 14,
},
{
category: "Source Sans Pro",
2022-06-03 02:11:48 -04:00
value: 8,
},
{
category: "Slabo 27px",
2022-06-03 02:11:48 -04:00
value: 41,
},
{
category: "Raleway",
2022-06-03 02:11:48 -04:00
value: 29,
},
];