soiz1's picture
Upload 2891 files
6bcb42f verified
raw
history blame
395 Bytes
import React from 'react';
import PropTypes from 'prop-types';
const DocumentationLink = ({slug, children}) => (
<a
href={`https://docs.turbowarp.org/${slug}`}
target="_blank"
rel="noopener noreferrer"
>
{children}
</a>
);
DocumentationLink.propTypes = {
slug: PropTypes.string,
children: PropTypes.node
};
export default DocumentationLink;