1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Cleanup History Details and a typo

This commit is contained in:
Bogdan
2024-09-01 04:25:21 +03:00
committed by Mark McDowall
parent 7f0696c574
commit 66cead6b48
4 changed files with 3 additions and 18 deletions
@@ -1,11 +1,11 @@
import React, { ComponentPropsWithoutRef } from 'react';
import styles from './TableRowCell.css';
export interface TableRowCellprops extends ComponentPropsWithoutRef<'td'> {}
export interface TableRowCellProps extends ComponentPropsWithoutRef<'td'> {}
export default function TableRowCell({
className = styles.cell,
...tdProps
}: TableRowCellprops) {
}: TableRowCellProps) {
return <td className={className} {...tdProps} />;
}