mirror of
https://github.com/ershisan99/flashcards-docs.git
synced 2025-12-16 20:59:26 +00:00
11 lines
349 B
TypeScript
11 lines
349 B
TypeScript
export const DownloadLink = ({ href }: { href: string }) => {
|
||
return (
|
||
<p style={{ marginTop: 24 }}>
|
||
<a id="raw-url" download href={href} style={{ fontWeight: 700, color: 'blue' }}>
|
||
Скачайте файл watchers.xml
|
||
</a>{' '}
|
||
и импортируйте его в Settings | Tools | File Watchers
|
||
</p>
|
||
)
|
||
}
|