push
github
200 of 269 branches covered (0.0%)
Branch coverage included in aggregate %.
291 of 373 new or added lines in 15 files covered. (78.02%)
1 existing line in 1 file now uncovered.7032 of 8291 relevant lines covered (84.81%)
3.86 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✔ |