) =>
(
+ return (
+
+ )
}
default:
return {domToReact(domNode.children as any, options)}
diff --git a/src/components/Tabs.tsx b/src/components/Tabs.tsx
index 97324586c..53c943c95 100644
--- a/src/components/Tabs.tsx
+++ b/src/components/Tabs.tsx
@@ -11,9 +11,10 @@ export type TabDefinition = {
export type TabsProps = {
tabs: Array
children: Array
+ id: string
}
-export function Tabs({ tabs, children }: TabsProps) {
+export function Tabs({ tabs, id, children }: TabsProps) {
const Route = getRouteApi()
const { framework } = Route.useParams()
@@ -27,6 +28,7 @@ export function Tabs({ tabs, children }: TabsProps) {
{tabs.map((tab) => {
return (
>
@@ -66,7 +70,7 @@ const Tab = ({
const options = React.useMemo(() => getFrameworkOptions(tab.slug), [tab.slug])
return (