openreplay/frontend/app/components/shared/DocLink/DocLink.js
2021-05-01 15:12:01 +05:30

16 lines
286 B
JavaScript

import React from 'react'
import { Button } from 'UI'
export default function DocLink({ link, label }) {
const openLink = () => {
window.open(link, '_blank')
}
return (
<div>
<Button outline onClick={openLink}>
{ label }
</Button>
</div>
)
}