import { TableCell } from '@components/common/ui/Table.js'; import React from 'react'; interface CustomerNameProps { name: string; url: string; } export function CustomerName({ url, name }: CustomerNameProps) { return (
{name}
); }