const Youtube = props => {
const { link, rest } = props
const src = link.match(/\?v=(.*)/)[1]
return (
)
}
const Spotify = props => {
const { link, rest } = props
const src = link.match(/track\/(.*)/)[1]
return (
)
}
const Media = props => {
if (props.link.includes('youtube.com')) {
return
Link not recognized.
} } export default Media