mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-20 04:55:20 -05:00
docs: Add query strings to tabs (#2840)
This commit is contained in:
@@ -59,7 +59,11 @@ function InterconnectTabs({ items, gpio }: InterconnectTabsProps) {
|
||||
.sort((a, b) => a.id.localeCompare(b.id));
|
||||
|
||||
return (
|
||||
<Tabs defaultValue={"pro_micro"} values={grouped.map(mapInterconnectValue)}>
|
||||
<Tabs
|
||||
queryString="interconnect"
|
||||
defaultValue={"pro_micro"}
|
||||
values={grouped.map(mapInterconnectValue)}
|
||||
>
|
||||
{grouped.map((items) => mapInterconnect(items, gpio))}
|
||||
</Tabs>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user