mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-30 18:24:45 -04:00
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
import React from 'react';
|
|
import styles from './InteractiveImportRowCellPlaceholder.css';
|
|
|
|
function InteractiveImportRowCellPlaceholder() {
|
|
return (
|
|
<span className={styles.placeholder} />
|
|
);
|
|
}
|
|
|
|
export default InteractiveImportRowCellPlaceholder;
|