Skip to content

Commit

Permalink
unused comp
Browse files Browse the repository at this point in the history
  • Loading branch information
MVarshini committed Jan 19, 2024
1 parent dc086be commit 9b515d0
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,20 +80,4 @@ const PanelConent = () => {
);
};

const ListItemView = (props) => {
const isActiveItem = props.item.resource_id === props.activeResourceId;
const itemClassName = isActiveItem
? "dataset-item active-item"
: "dataset-item";
return (
<ListItem
className={itemClassName}
onClick={() => props.dispatch(getQuisbyData(props.item))}
key={props.item.resource_id}
>
{props.item.name}
</ListItem>
);
};

export default PanelConent;

0 comments on commit 9b515d0

Please sign in to comment.