mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-23 22:25:56 -04:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
import React from 'react';
|
|
import Link, { LinkProps } from 'Components/Link/Link';
|
|
import TableRow from './TableRow';
|
|
import styles from './TableRowButton.css';
|
|
|
|
function TableRowButton(props: LinkProps) {
|
|
return <Link className={styles.row} component={TableRow} {...props} />;
|
|
}
|
|
|
|
export default TableRowButton;
|