Add config option to enable/disable Transcoding configuration

This commit is contained in:
Deluan
2020-04-27 21:23:15 -04:00
committed by Deluan Quintão
parent eb7d2dcaa1
commit c816ca4525
12 changed files with 134 additions and 49 deletions
+10
View File
@@ -0,0 +1,10 @@
import React from 'react'
import { docsUrl } from '../utils/docsUrl'
const DocLink = ({ path, children }) => (
<a href={docsUrl(path)} target={'_blank'} rel="noopener noreferrer">
{children}
</a>
)
export default DocLink
+2
View File
@@ -7,6 +7,7 @@ import SimpleList from './SimpleList'
import RangeField, { formatRange } from './RangeField'
import SongDetails from './SongDetails'
import SizeField from './SizeField'
import DocLink from './DocLink'
export {
Title,
@@ -18,5 +19,6 @@ export {
SimpleList,
RangeField,
SongDetails,
DocLink,
formatRange,
}