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';
33import { refresh , terminal } from 'solid-heroicons/outline' ;
44import { unwrap } from 'solid-js/store' ;
55import { Preview } from './preview' ;
6- import { TabItem } from './tab/item' ;
7- import { TabList } from './tab/list' ;
6+ import { TabItem , TabList } from './tabs' ;
87import { GridResizer } from './gridResizer' ;
98import { Error } from './error' ;
109import { 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<{
1818 </ li >
1919 ) ;
2020} ;
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