Skip to content

Commit feae634

Browse files
committed
docs(tabs): fix indentation
1 parent 23608ed commit feae634

File tree

1 file changed

+4
-2
lines changed
  • apps/website/src/routes/docs/headless/tabs/examples

1 file changed

+4
-2
lines changed

apps/website/src/routes/docs/headless/tabs/examples/reusable.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,17 @@ const CustomTabList = component$<TabListProps>(() => {
2525
const CustomTab = component$<TabProps>(({ ...props }) => {
2626
return (
2727
<Tab {...props}>
28-
<span class="text-red-500">Custom</span> <Slot />
28+
<span class="text-red-500">Custom</span>
29+
<Slot />
2930
</Tab>
3031
);
3132
});
3233

3334
const CustomTabPanel = component$<TabPanelProps>(({ ...props }) => {
3435
return (
3536
<TabPanel {...props}>
36-
<span class="text-red-500">Description:</span> <Slot />
37+
<span class="text-red-500">Description:</span>
38+
<Slot />
3739
</TabPanel>
3840
);
3941
});

0 commit comments

Comments
 (0)