File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,7 @@ import { Icon } from 'solid-heroicons';
3
3
import { refresh , terminal } from 'solid-heroicons/outline' ;
4
4
import { unwrap } from 'solid-js/store' ;
5
5
import { Preview } from './preview' ;
6
- import { TabItem } from './tab/item' ;
7
- import { TabList } from './tab/list' ;
6
+ import { TabItem , TabList } from './tabs' ;
8
7
import { GridResizer } from './gridResizer' ;
9
8
import { Error } from './error' ;
10
9
import { throttle } from '@solid-primitives/scheduled' ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -18,3 +18,7 @@ export const TabItem: ParentComponent<{
18
18
</ li >
19
19
) ;
20
20
} ;
21
+
22
+ export const TabList : ParentComponent = ( props ) => {
23
+ return < ul class = "flex tabs flex-wrap items-center list-none m-0" > { props . children } </ ul > ;
24
+ } ;
You can’t perform that action at this time.
0 commit comments