mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
const components = [
|
|
{
|
|
title: "Button",
|
|
},
|
|
].map((post) => ({
|
|
...post,
|
|
slug: post.title.toLowerCase().replace(/\s+/g, "-"),
|
|
}));
|
|
|
|
export default components;
|