mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
Initial Commit Rework
This commit is contained in:
16
frontend/src/Components/Table/TableRowButton.js
Normal file
16
frontend/src/Components/Table/TableRowButton.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import Link from 'Components/Link/Link';
|
||||
import TableRow from './TableRow';
|
||||
import styles from './TableRowButton.css';
|
||||
|
||||
function TableRowButton(props) {
|
||||
return (
|
||||
<Link
|
||||
className={styles.row}
|
||||
component={TableRow}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export default TableRowButton;
|
||||
Reference in New Issue
Block a user