mirror of
https://github.com/Lidarr/Lidarr
synced 2026-02-03 21:32:35 +01:00
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
import React from 'react';
|
|
import styles from './InteractiveImportRowCellPlaceholder.css';
|
|
|
|
function InteractiveImportRowCellPlaceholder() {
|
|
return (
|
|
<span className={styles.placeholder} />
|
|
);
|
|
}
|
|
|
|
export default InteractiveImportRowCellPlaceholder;
|