initial commit, lesson 1

This commit is contained in:
andres
2023-06-23 17:50:25 +02:00
parent e20bdb8eef
commit e190c8c698
44 changed files with 3424 additions and 498 deletions

View File

@@ -0,0 +1,10 @@
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>
)
}