We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23608ed commit feae634Copy full SHA for feae634
apps/website/src/routes/docs/headless/tabs/examples/reusable.tsx
@@ -25,15 +25,17 @@ const CustomTabList = component$<TabListProps>(() => {
25
const CustomTab = component$<TabProps>(({ ...props }) => {
26
return (
27
<Tab {...props}>
28
- <span class="text-red-500">Custom</span> <Slot />
+ <span class="text-red-500">Custom</span>
29
+ <Slot />
30
</Tab>
31
);
32
});
33
34
const CustomTabPanel = component$<TabPanelProps>(({ ...props }) => {
35
36
<TabPanel {...props}>
- <span class="text-red-500">Description:</span> <Slot />
37
+ <span class="text-red-500">Description:</span>
38
39
</TabPanel>
40
41
0 commit comments