diff --git a/app/javascript/src/components/Table/TableRow.tsx b/app/javascript/src/components/Table/TableRow.tsx index 6bab7bb..c549712 100644 --- a/app/javascript/src/components/Table/TableRow.tsx +++ b/app/javascript/src/components/Table/TableRow.tsx @@ -1,3 +1,4 @@ +import classNames from "classnames"; import type { FC, ReactNode } from "react"; import React from "react"; @@ -15,12 +16,16 @@ export const TableRow: FC = ({ items, id, onClick }) => { }; return ( - + {items?.map((item, index) => ( - +

{item}

))}