import * as React from 'react'; export interface ScoreProps { id: string; alt: string; } export const Score: React.FC = ({ id, alt, }) => { return ( {alt} ) };