|
|
@ -7,7 +7,7 @@ export const TreeView = (props: TreeViewProps) => { |
|
|
|
const { children, id, ...otherProps } = props |
|
|
|
const { children, id, ...otherProps } = props |
|
|
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<ul data-id={`treeViewUl${id}`} className="ul_tv ml-0 pl-2" { ...otherProps }> |
|
|
|
<ul data-id={`treeViewUl${id}`} className="ul_tv ml-0 pl-1" { ...otherProps }> |
|
|
|
{ children } |
|
|
|
{ children } |
|
|
|
</ul> |
|
|
|
</ul> |
|
|
|
) |
|
|
|
) |
|
|
|