push
github
146 of 209 branches covered (0.0%)
Branch coverage included in aggregate %.
1530 of 1676 new or added lines in 61 files covered. (91.29%)
3793 of 4193 relevant lines covered (90.46%)
4.25 hits per line
|
import { ReactNode } from 'react'; |
2✔ |
|
import TableContentSection from './table.content'; |
2✔ |
|
import Container from './table.container'; |
2✔ |
|
|
2✔ |
|
type AccountTable = { |
2✔ |
|
Container: typeof Container;
|
2✔ |
|
Content: typeof TableContentSection;
|
2✔ |
|
}; |
2✔ |
|
|
2✔ |
|
export const AccountTable: AccountTable = ({ |
2✔ |
NEW
|
children, |
× |
NEW
|
}: { |
× |
NEW
|
children: ReactNode;
|
× |
NEW
|
}) => { |
× |
NEW
|
return children;
|
× |
NEW
|
}; |
× |
|
|
2✔ |
|
AccountTable.Container = Container; |
2✔ |
|
|
2✔ |
|
AccountTable.Content = TableContentSection; |
2✔ |
|
|
2✔ |
|
export default AccountTable; |
2✔ |