github
1388 of 2837 branches covered (48.92%)
25 of 1927 new or added lines in 39 files covered. (1.3%)
1 existing line in 1 file now uncovered.14099 of 81259 relevant lines covered (17.35%)
1.72 hits per line
NEW
|
import { Label } from '@teable/ui-lib'; |
|
NEW
|
× | |
NEW
|
export const FormItem = (props: { label: string; children: React.ReactNode }) => { |
× |
NEW
|
const { label, children } = props;
|
× |
NEW
|
return (
|
× |
NEW
|
<div className="flex flex-1 gap-5">
|
× |
NEW
|
<Label className="w-24 text-right leading-7">{label}</Label>
|
× |
NEW
|
{children} |
× |
NEW
|
</div> |
× |
NEW
|
); |
× |
NEW
|
}; |
× |