Piano notes book, powered by Astro and React.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 

18 строки
264 B

  1. import * as React from 'react';
  2. export interface ScoreProps {
  3. id: string;
  4. alt: string;
  5. }
  6. export const Score: React.FC<ScoreProps> = ({
  7. id,
  8. alt,
  9. }) => {
  10. return (
  11. <a href={`scores/${id}.musicxml`}>
  12. <img src={`scores/${id}.svg`} alt={alt} />
  13. </a>
  14. )
  15. };