import React from 'react' import { ChevronDown, ChevronUp } from 'components/Icons' export const MANAGE_META = { accessorKey: 'manage', enableSorting: false, header: 'Manage' } interface Props { isExpanded: boolean } export default function Manage(props: Props) { return (
{props.isExpanded ? : }
) }