mirror of
https://github.com/Sonarr/Sonarr
synced 2026-01-19 22:11:43 +01:00
16 lines
384 B
JavaScript
16 lines
384 B
JavaScript
import React from 'react';
|
|
import Link from 'Components/Link/Link';
|
|
import styles from './MetadataAttribution.css';
|
|
|
|
export default function MetadataAttribution() {
|
|
return (
|
|
<div className={styles.container}>
|
|
<Link
|
|
className={styles.attribution}
|
|
to="/settings/metadatasource"
|
|
>
|
|
Metadata is provided by TheTVDB
|
|
</Link>
|
|
</div>
|
|
);
|
|
}
|