circleci
70 of 95 branches covered (73.68%)
Branch coverage included in aggregate %.
84 of 626 new or added lines in 24 files covered. (13.42%)
219 existing lines in 7 files now uncovered.1366 of 2345 relevant lines covered (58.25%)
2.27 hits per line
|
|
import React from 'react'; |
1✔ |
|
|
import Table from '@/components/Table'; |
1✔ |
|
|
import { GreenButton } from '@/components/Button';
|
1✔ |
|
|
import DashboardHeader from '@/components/DashboardHeader'; |
1✔ |
|
|
|
1✔ |
|
NEW
|
function sellerProductView() {
|
× |
|
NEW
|
return (
|
× |
|
NEW
|
<> |
× |
|
NEW
|
<div className='w-full flex justify-center overflow-scroll'> |
× |
|
NEW
|
<div className='w-full max-w-[80%] flex flex-col justify-center align-middle'> |
× |
|
NEW
|
<div className="flex justify-between">
|
× |
|
NEW
|
<h2 className="text-xl text-black">Seller's products view</h2> |
× |
|
NEW
|
<div> |
× |
|
NEW
|
<GreenButton name="New product" />
|
× |
|
NEW
|
</div> |
× |
|
NEW
|
</div> |
× |
|
NEW
|
<div className='w-full'> |
× |
|
NEW
|
<Table /> |
× |
|
NEW
|
</div> |
× |
|
NEW
|
</div> |
× |
|
NEW
|
</div> |
× |
|
NEW
|
</> |
× |
|
NEW
|
); |
× |
|
NEW
|
} |
× |
|
|
|
1✔ |
|
|
export default sellerProductView; |
1✔ |