github
199 of 268 branches covered (0.0%)
Branch coverage included in aggregate %.
178 of 237 new or added lines in 9 files covered. (75.11%)
7006 of 8222 relevant lines covered (85.21%)
3.42 hits per line
|
import { ReactNode } from 'react'; |
2✔ |
|
import TabBase from './base'; |
2✔ |
|
|
2✔ |
|
export type TabVariants = {
|
2✔ |
|
Base: typeof TabBase;
|
2✔ |
|
}; |
2✔ |
|
|
2✔ |
|
export const Tab: TabVariants = ({ children }: { children: ReactNode }) => { |
2✔ |
NEW
|
return children;
|
× |
NEW
|
}; |
× |
|
|
2✔ |
|
Tab.Base = TabBase; |
2✔ |
|
|
2✔ |
|
export default Tab; |
2✔ |