mirror of
https://github.com/navidrome/navidrome.git
synced 2026-03-04 06:35:52 +00:00
9 lines
206 B
JavaScript
9 lines
206 B
JavaScript
import React from 'react'
|
|
import { docsUrl } from '../utils'
|
|
|
|
export const DocLink = ({ path, children }) => (
|
|
<a href={docsUrl(path)} target={'_blank'} rel="noopener noreferrer">
|
|
{children}
|
|
</a>
|
|
)
|