docs: updated docs

This commit is contained in:
Leifer Mendez
2022-12-24 14:10:27 +01:00
parent b336586de3
commit ba02496222
12 changed files with 274 additions and 178 deletions

View File

@@ -16,8 +16,8 @@ export default component$(
}) => {
return (
<div>
{options.map((item) => (
<UlCompoent title={item.title} list={item.list} />
{options.map((item, i) => (
<UlCompoent key={i} title={item.title} list={item.list} />
))}
</div>
)