Rename UI Component Episode to Album

This commit is contained in:
Qstick
2017-10-18 21:56:15 -04:00
parent a80360f6fd
commit 4b278c80aa
54 changed files with 38 additions and 38 deletions
+23
View File
@@ -0,0 +1,23 @@
import PropTypes from 'prop-types';
import React from 'react';
import Label from 'Components/Label';
function EpisodeLanguage(props) {
const language = props.language;
if (!language) {
return null;
}
return (
<Label>
{language.name}
</Label>
);
}
EpisodeLanguage.propTypes = {
language: PropTypes.object
};
export default EpisodeLanguage;